This commit is contained in:
iFargle 2023-07-01 20:08:44 +09:00
parent 5af1ecff6c
commit bde5678e09

View file

@ -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
'';
};
}