mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-12-18 19:02:17 +00:00
35 lines
634 B
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";
|
|
}
|
|
];
|
|
}
|
|
|