test
This commit is contained in:
parent
5af1ecff6c
commit
bde5678e09
1 changed files with 10 additions and 2 deletions
|
@ -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
|
||||
'';
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue