mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-12-18 10:52:18 +00:00
neovim: adjust trim behavior
This commit is contained in:
parent
98dce56672
commit
e27044eaa2
1 changed files with 6 additions and 3 deletions
|
@ -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 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue