feat: add spellchecking to neovim installation

This commit is contained in:
wi11-holdsworth 2025-11-11 11:51:57 +11:00
parent 5a2c07942c
commit c88d609d34

View file

@ -20,13 +20,18 @@
}; };
diagnostic.settings.virtual_lines = true; diagnostic.settings.virtual_lines = true;
opts = { opts = {
# keep-sorted start
autoindent = true; autoindent = true;
colorcolumn = "80";
expandtab = true; expandtab = true;
number = true; number = true;
relativenumber = true; relativenumber = true;
shiftwidth = 2; shiftwidth = 2;
# get suggestions by typing z=
spell = true;
spelllang = "en_au";
tabstop = 2; tabstop = 2;
colorcolumn = "80"; # keep-sorted end
}; };
plugins = { plugins = {
# auto close brackets # auto close brackets