fix neovim
This commit is contained in:
parent
1e68facfec
commit
ade4d71dc7
12
home.nix
12
home.nix
|
@ -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>";
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue