update vim options

This commit is contained in:
Roel de Cort 2024-04-20 15:28:07 +02:00
parent 8152eb9b2b
commit b59a4d5afc

View file

@ -3,18 +3,19 @@
opts = { opts = {
number = true; number = true;
relativenumber = true; relativenumber = true;
tabstop = 2; tabstop = 2;
softtabstop = 2; softtabstop = 2;
showtabline = 2; showtabline = 2;
expandtab = true; expandtab = true;
smartindent = true; smartindent = true;
shiftwidth = 2; shiftwidth = 2;
breakindent = true; breakindent = true;
cursorline = true; cursorline = true;
scrolloff = 8;
foldmethod = "manual";
foldenable = false;
linebreak = true;
spell = false;
}; };
}; };
} }