diff options
| author | Freya Murphy <freya@freyacat.org> | 2025-12-31 01:01:54 -0500 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2025-12-31 01:01:54 -0500 |
| commit | 7badef86af2c5e2157f9b5a74565913ed7313098 (patch) | |
| tree | ba8442157b3e1c98a74535cf49748a57dc2c9f07 /home/neovim | |
| parent | shinji: add some defaults from nixos-hardware (diff) | |
| download | dotfiles-nix-7badef86af2c5e2157f9b5a74565913ed7313098.tar.gz dotfiles-nix-7badef86af2c5e2157f9b5a74565913ed7313098.tar.bz2 dotfiles-nix-7badef86af2c5e2157f9b5a74565913ed7313098.zip | |
remove unused variabled (and add nixd lsp)
Diffstat (limited to '')
| -rw-r--r-- | home/neovim/config.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/home/neovim/config.nix b/home/neovim/config.nix index aa5816e..52bae04 100644 --- a/home/neovim/config.nix +++ b/home/neovim/config.nix @@ -53,7 +53,10 @@ in }; # list of lsp servers to load lsps = - optionalAttrs config.development.c.enable { + { + nixd = {}; + } + // optionalAttrs config.development.c.enable { clangd = {}; } // optionalAttrs config.development.java.enable { |