feat: add spellchecking to neovim installation
This commit is contained in:
parent
5a2c07942c
commit
c88d609d34
1 changed files with 7 additions and 2 deletions
|
|
@ -20,16 +20,21 @@
|
||||||
};
|
};
|
||||||
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 = {
|
||||||
# autoclose brackets
|
# auto close brackets
|
||||||
autoclose.enable = true;
|
autoclose.enable = true;
|
||||||
|
|
||||||
# completion window
|
# completion window
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue