diff --git a/flake.nix b/flake.nix index cca3766..0119578 100644 --- a/flake.nix +++ b/flake.nix @@ -232,6 +232,7 @@ git emacs kitty + vim # Terminal starship diff --git a/users/profiles/vim.nix b/users/profiles/vim.nix new file mode 100644 index 0000000..02790b9 --- /dev/null +++ b/users/profiles/vim.nix @@ -0,0 +1,20 @@ +{ ... }: { + programs.vim = { + enable = true; + settings = { + background = "dark"; + directory = [ + "." + "~/.local/share/vim/swap//" + ]; + expandtab = true; + history = 50; + ignorecase = true; + smartcase = true; + mouse = "a"; + number = true; + tabstop = 4; + shiftwidth = 4; + }; + }; +}