diff options
author | Griffin Smith <root@gws.fyi> | 2020-03-28T03·32-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2020-03-28T15·47-0400 |
commit | 28ccec970435f9acfdecfae95848947c8b751e09 (patch) | |
tree | 4a55bdaab006c46cd5ad86d407d7d80fab8ed57f /home/modules/vim.nix |
Initial commit
It begins...
Diffstat (limited to 'home/modules/vim.nix')
-rw-r--r-- | home/modules/vim.nix | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/home/modules/vim.nix b/home/modules/vim.nix new file mode 100644 index 000000000000..87d4309333dd --- /dev/null +++ b/home/modules/vim.nix @@ -0,0 +1,47 @@ +{ config, pkgs, ... }: +{ + programs.neovim = { + enable = true; + viAlias = true; + vimAlias = true; + plugins = with pkgs.vimPlugins; [ + ctrlp + deoplete-nvim + syntastic + vim-abolish + vim-airline + vim-airline-themes + vim-bufferline + vim-closetag + # vim-colors-solarized + # solarized + (pkgs.vimUtils.buildVimPlugin { + name = "vim-colors-solarized"; + src = pkgs.fetchFromGitHub { + owner = "glittershark"; + repo = "vim-colors-solarized"; + rev = "4857c3221ec3f2693a45855154cb61a2cefb514d"; + sha256 = "0kqp5w14g7adaiinmixm7z3x4w74lv1lcgbqjbirx760f0wivf9y"; + }; + }) + vim-commentary + vim-dispatch + vim-endwise + vim-repeat + vim-fugitive + vim-markdown + vim-nix + vim-rhubarb + vim-sexp + vim-sexp-mappings-for-regular-people + vim-sleuth + vim-startify + vim-surround + vim-unimpaired + vinegar + ]; + extraConfig = '' + source ${./vimrc} + ''; + }; +} |