vim: add more vim settings
New settings: copyindent, hidden, ignorecase, modeline, smartcase.
This commit is contained in:
parent
9eb48312c7
commit
420a3f4a01
|
@ -9,11 +9,16 @@ let
|
|||
|
||||
knownSettings = {
|
||||
background = types.enum [ "dark" "light" ];
|
||||
copyindent = types.bool;
|
||||
expandtab = types.bool;
|
||||
hidden = types.bool;
|
||||
history = types.int;
|
||||
ignorecase = types.bool;
|
||||
modeline = types.bool;
|
||||
number = types.bool;
|
||||
relativenumber = types.bool;
|
||||
shiftwidth = types.int;
|
||||
smartcase = types.bool;
|
||||
tabstop = types.int;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue