summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--nix/home/default.nix3
-rw-r--r--nix/programs/neovim/default.nix2
2 files changed, 4 insertions, 1 deletions
diff --git a/nix/home/default.nix b/nix/home/default.nix
index ae5aebb..afd05a1 100644
--- a/nix/home/default.nix
+++ b/nix/home/default.nix
@@ -29,6 +29,9 @@
rust-analyzer
cargo
clippy
+ # zig
+ zig
+ zls
# android
scrcpy
android-tools
diff --git a/nix/programs/neovim/default.nix b/nix/programs/neovim/default.nix
index 826a22d..606df81 100644
--- a/nix/programs/neovim/default.nix
+++ b/nix/programs/neovim/default.nix
@@ -127,7 +127,7 @@ with lib;
lsps = mkOption {
type = with types; listOf str;
description = "List of lsp servers to load";
- default = ["clangd" "rust_analyzer"];
+ default = ["clangd" "zls" "rust_analyzer"];
};
};