all repos — nixfiles @ b1cc8c0bf8b699c435e967873d88159aae7b2ad4

System and user configuration, managed by nix and home-manager

neovim: update config structure for home-manager 21.05

Alan Pearce
commit

b1cc8c0bf8b699c435e967873d88159aae7b2ad4

parent

5da5d88c34e617be104f241499965a6daa183dd4

1 file changed, 15 insertions(+), 20 deletions(-)

jump to
M user/settings/base.nixuser/settings/base.nix
@@ -15,26 +15,21 @@ enable = true;
vimAlias = true; vimdiffAlias = true; withNodeJs = true; - configure = { - customRC = builtins.readFile ../nvim/init.vim; - packages.myVimPackage = with pkgs.vimPlugins; { - start = [ - commentary - coc-css - coc-eslint - coc-git - coc-html - coc-json - coc-nvim - coc-prettier - coc-tabnine - coc-yaml - vim-surround - vim-nix - ]; - opt = [ ]; - }; - }; + plugins = with pkgs.vimPlugins; [ + commentary + coc-css + coc-eslint + coc-git + coc-html + coc-json + coc-nvim + coc-prettier + coc-tabnine + coc-yaml + vim-surround + vim-nix + ]; + extraConfig = builtins.readFile ../nvim/init.vim; coc = { config = { "json.enable" = true;