dotfiles/home/modules/tui/neovim/autocmds.nix

35 lines
634 B
Nix

{
programs.nixvim.autoCmd = [
# Vertically center document when entering insert mode
{
event = "InsertEnter";
command = "norm zz";
}
# Open help in a vertical split
{
event = "FileType";
pattern = "help";
command = "wincmd L";
}
# Enable spellcheck for some filetypes
{
event = "FileType";
pattern = [
"markdown"
];
command = "setlocal spell spelllang=en";
}
# Enable wrap for some filetypes
{
event = "FileType";
pattern = [
"markdown"
];
command = "setlocal wrap linebreak";
}
];
}