fix neovim

This commit is contained in:
genofire 2021-10-07 22:32:21 +02:00
parent 1e68facfec
commit ade4d71dc7
1 changed files with 9 additions and 3 deletions

View File

@ -38,7 +38,7 @@
programs.zsh = { programs.zsh = {
enable = true; enable = true;
enableAutosuggestions = true; enableAutosuggestions = true;
# missing syntaxHighlighting # broken: enableSyntaxHighlighting = true;
# grml and pure enabled .... # grml and pure enabled ....
}; };
@ -57,11 +57,17 @@
}; };
programs.neovim = { programs.neovim = {
enable = true; enable = true;
extraPackages = with pkgs.vimPlugins; [ extraConfig = ''
syntax on
'';
plugins = with pkgs.vimPlugins; [
nvim-lspconfig nvim-lspconfig
airline airline
Syntastic Syntastic
nerdtree {
plugin = nerdtree;
config = "map <C-n> :NERDTreeToggle<CR>";
}
]; ];
}; };
} }