diff --git a/common/dotfiles/vim.nix b/common/dotfiles/vim.nix index f6cbdeef..2df3bed3 100644 --- a/common/dotfiles/vim.nix +++ b/common/dotfiles/vim.nix @@ -2,9 +2,17 @@ # https://nixos.wiki/wiki/Vim programs.vim = { enable = true; - plugins = with pkgs.vimPlugins; [ vim-airline ]; + plugins = with pkgs.vimPlugins; [ + vim-airline + vim-airline-themes + tabnine + nerdtree + rainbow + dracula-vim + ]; settings = { ignorecase = true; }; extraConfig = '' + colorscheme dracula set mouse=a set number syntax on @@ -16,8 +24,8 @@ set shiftwidth=2 set expandtab set softtabstop=2 - colorscheme slate set cursorline + AirlineTheme wombat ''; }; } \ No newline at end of file