From 420a3f4a01f58ac6d504435b1641106cb59588c1 Mon Sep 17 00:00:00 2001 From: Nikita Uvarov Date: Mon, 9 Oct 2017 14:39:56 +0200 Subject: [PATCH] vim: add more vim settings New settings: copyindent, hidden, ignorecase, modeline, smartcase. --- modules/programs/vim.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/programs/vim.nix b/modules/programs/vim.nix index 8f9430160..c77c0d45d 100644 --- a/modules/programs/vim.nix +++ b/modules/programs/vim.nix @@ -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; };