all repos — nixfiles @ 3934e2fc7583230336ff669fa2433f9e3069ada6

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

dev/zig: install a language server
Alan Pearce alan@alanpearce.eu
Sun, 28 Apr 2024 23:13:27 +0200
commit

3934e2fc7583230336ff669fa2433f9e3069ada6

parent

ea6e9729dc8a51978dc89c5a546ecf7381e3c9b7

1 files changed, 3 insertions(+), 0 deletions(-)

jump to
M user/settings/development/zig.nixuser/settings/development/zig.nix
@@ -2,6 +2,9 @@ { config , pkgs
 , ...
 }: {
+  home.packages = with pkgs; [
+    zls
+  ];
   programs.emacs.extraPackages = epkgs: (with epkgs; [
     zig-mode
   ]);