diff --git a/configurations/profile/home/editor/neovim.nix b/configurations/profile/home/editor/neovim.nix index 7735e54..8f51805 100644 --- a/configurations/profile/home/editor/neovim.nix +++ b/configurations/profile/home/editor/neovim.nix @@ -14,6 +14,39 @@ in withNodeJs = true; withPython3 = true; withRuby = true; + defaultEditor = true; + + extraConfig = '' + set number + ''; + + + plugins = with pkgs.vimPlugins;[ + nerdtree + syntastic + + vim-fugitive + vim-airline + vim-nix + + nvim-fzf + + coc-clangd + coc-python + coc-pyright + coc-sh + coc-git + coc-css + coc-yaml + coc-toml + coc-json + coc-html + coc-highlight + coc-java + coc-cmake + coc-vimlsp + + ]; }; };