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