all repos — nixfiles @ 643cb57ea23dd39f357738d47530484800c77b8a

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

neovim: use nixvim to manage plugins and configuration

Alan Pearce
commit

643cb57ea23dd39f357738d47530484800c77b8a

parent

4d656564a8693818146ed8b59d7c9f81af21169d

1 file changed, 4 insertions(+), 3 deletions(-)

changed files
M user/settings/development/zig.nixuser/settings/development/zig.nix
@@ -8,7 +8,8 @@ ];
programs.emacs.extraPackages = epkgs: (with epkgs; [ zig-mode ]); - programs.neovim.plugins = with pkgs.vimPlugins; [ - zig-vim - ]; + programs.nixvim.plugins = { + zig.enable = true; + lsp.servers.zls.enable = true; + }; }