1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-24 07:28:32 +02:00

vim: add more vim settings

New settings: copyindent, hidden, ignorecase, modeline, smartcase.
This commit is contained in:
Nikita Uvarov 2017-10-09 14:39:56 +02:00
parent 9eb48312c7
commit 420a3f4a01
No known key found for this signature in database
GPG Key ID: F7A5FB3A7C10EF96

View File

@ -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;
};