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