Files
cnix/home/extra/neovim/autocommands.nix
2024-07-15 12:30:44 +02:00

22 lines
373 B
Nix

{
programs.nixvim.autoCmd = [
# Open help in a vertical split
{
event = "FileType";
pattern = "help";
command = "wincmd L";
}
# Enable spellcheck for some filetypes
{
event = "FileType";
pattern = [
"tex"
"latex"
"markdown"
];
command = "setlocal spell spelllang=en,se";
}
];
}