From bde5678e0930fd4333adeb54756975e3b8635b6b Mon Sep 17 00:00:00 2001 From: iFargle Date: Sat, 1 Jul 2023 20:08:44 +0900 Subject: [PATCH] test --- common/dotfiles/vim.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) 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