diff options
author | Alan Pearce | 2024-04-28 23:13:27 +0200 |
---|---|---|
committer | Alan Pearce | 2024-04-28 23:14:49 +0200 |
commit | 3934e2fc7583230336ff669fa2433f9e3069ada6 (patch) | |
tree | 82721110ae0d07f560a930ca7823ecb32b31407a /user/settings | |
parent | ea6e9729dc8a51978dc89c5a546ecf7381e3c9b7 (diff) | |
download | nixfiles-3934e2fc7583230336ff669fa2433f9e3069ada6.tar.lz nixfiles-3934e2fc7583230336ff669fa2433f9e3069ada6.tar.zst nixfiles-3934e2fc7583230336ff669fa2433f9e3069ada6.zip |
dev/zig: install a language server
Diffstat (limited to 'user/settings')
-rw-r--r-- | user/settings/development/zig.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/user/settings/development/zig.nix b/user/settings/development/zig.nix index e5fab030..ac21267f 100644 --- a/user/settings/development/zig.nix +++ b/user/settings/development/zig.nix @@ -2,6 +2,9 @@ , pkgs , ... }: { + home.packages = with pkgs; [ + zls + ]; programs.emacs.extraPackages = epkgs: (with epkgs; [ zig-mode ]); |