feat: neovim plugins update

This commit is contained in:
gwg313 2024-09-26 11:35:37 -04:00
parent 6e8014e0b5
commit eaf110c96f
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
13 changed files with 1195 additions and 6 deletions

View file

@ -0,0 +1,21 @@
{...}: {
programs.nixvim = {
autoCmd = [
# Remove trailing whitespace on save
{
event = "BufWrite";
command = "%s/\\s\\+$//e";
}
{
event = "FileType";
pattern = [
"tex"
"latex"
"markdown"
];
command = "setlocal spell spelllang=en_us";
}
];
};
}