mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-12-18 19:02:17 +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 = {
|
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"
|
||||||
|
@ -50,3 +52,4 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue