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 = {
|
knownSettings = {
|
||||||
background = types.enum [ "dark" "light" ];
|
background = types.enum [ "dark" "light" ];
|
||||||
|
copyindent = types.bool;
|
||||||
expandtab = types.bool;
|
expandtab = types.bool;
|
||||||
|
hidden = types.bool;
|
||||||
history = types.int;
|
history = types.int;
|
||||||
|
ignorecase = types.bool;
|
||||||
|
modeline = types.bool;
|
||||||
number = types.bool;
|
number = types.bool;
|
||||||
relativenumber = types.bool;
|
relativenumber = types.bool;
|
||||||
shiftwidth = types.int;
|
shiftwidth = types.int;
|
||||||
|
smartcase = types.bool;
|
||||||
tabstop = types.int;
|
tabstop = types.int;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue