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 # https://nixos.wiki/wiki/Vim
programs.vim = { programs.vim = {
enable = true; 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; }; settings = { ignorecase = true; };
extraConfig = '' extraConfig = ''
colorscheme dracula
set mouse=a set mouse=a
set number set number
syntax on syntax on
@ -16,8 +24,8 @@
set shiftwidth=2 set shiftwidth=2
set expandtab set expandtab
set softtabstop=2 set softtabstop=2
colorscheme slate
set cursorline set cursorline
AirlineTheme wombat
''; '';
}; };
} }