22 lines
373 B
Nix
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";
|
|
}
|
|
];
|
|
}
|