From ea5713154d37c012e5d0b67c7c81d54d25795bfb Mon Sep 17 00:00:00 2001 From: materus Date: Tue, 23 May 2023 23:39:04 +0200 Subject: [PATCH] home-profile: update neovim cfg --- configurations/profile/home/editor/neovim.nix | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) 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 + + ]; }; };