diff --git a/users/tacocat/programs/default.nix b/users/tacocat/programs/default.nix index db2bc7a..30aab2b 100644 --- a/users/tacocat/programs/default.nix +++ b/users/tacocat/programs/default.nix @@ -8,6 +8,7 @@ ./fzf.nix ./tmux.nix ./tiny.nix + ./vim.nix ]; programs.eza = { diff --git a/users/tacocat/programs/vim.nix b/users/tacocat/programs/vim.nix new file mode 100644 index 0000000..6f2dc1a --- /dev/null +++ b/users/tacocat/programs/vim.nix @@ -0,0 +1,20 @@ +{...}: { + programs.vim = { + enable = true; + settings = { + background = "dark"; + copyindent = true; + expandtab = false; + hidden = true; + history = 100; + ignorecase = false; + modeline = true; + mouse = "a"; + mousefocus = false; + number = true; + relativenumber = true; + shiftwidth = 2; + tabstop = 2; + }; + }; +}