neovim: adjust trim behavior

This commit is contained in:
John Bowdre 2024-12-04 22:54:38 -06:00
parent 98dce56672
commit e27044eaa2
Signed by: john
SSH key fingerprint: SHA256:cZYnOxaLdo+MhBNMX38ihO/p2Kek6fBykSFoJwHBhUo

View file

@ -12,7 +12,7 @@
]; ];
programs.nixvim = { programs.nixvim = {
colorschemes.catppuccin.enable = true; colorschemes.cyberdream.enable = true;
plugins = { plugins = {
web-devicons.enable = true; web-devicons.enable = true;
@ -22,6 +22,7 @@
settings.signs = { settings.signs = {
add.text = "+"; add.text = "+";
change.text = "~"; change.text = "~";
delete.text = "-";
}; };
}; };
@ -37,7 +38,8 @@
trim = { trim = {
enable = true; enable = true;
settings = { settings = {
highlight = true; highlight = false;
trim_last_line = false;
ft_blocklist = [ ft_blocklist = [
"checkhealth" "checkhealth"
"floaterm" "floaterm"
@ -49,4 +51,5 @@
}; };
}; };
}; };
} }