diff options
author | Freya Murphy <freya@freyacat.org> | 2025-09-17 22:07:16 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-09-17 22:07:16 -0400 |
commit | 68d03fe362b7e0df11662d8d6a1e01eac0bfae77 (patch) | |
tree | a76abd05f662f73b4083ddb0d8bf0d72c29e5a74 /home/neovim/config.nix | |
parent | update commits (diff) | |
download | dotfiles-nix-68d03fe362b7e0df11662d8d6a1e01eac0bfae77.tar.gz dotfiles-nix-68d03fe362b7e0df11662d8d6a1e01eac0bfae77.tar.bz2 dotfiles-nix-68d03fe362b7e0df11662d8d6a1e01eac0bfae77.zip |
refactor: remove modules folder, fully split home and system modules
Diffstat (limited to 'home/neovim/config.nix')
-rw-r--r-- | home/neovim/config.nix | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/home/neovim/config.nix b/home/neovim/config.nix index b775e77..be86c9b 100644 --- a/home/neovim/config.nix +++ b/home/neovim/config.nix @@ -53,14 +53,14 @@ in }; # list of lsp servers to load lsps = - optionalAttrs config.development.c { + optionalAttrs config.development.c.enable { clangd = {}; } - // optionalAttrs config.development.java { + // optionalAttrs config.development.java.enable { jdtls = {}; kotlin_language_server = {}; } - // optionalAttrs config.development.lua { + // optionalAttrs config.development.lua.enable { lua_ls = { Lua = { diagnostics = { @@ -69,14 +69,14 @@ in }; }; } - // optionalAttrs config.development.rust { + // optionalAttrs config.development.rust.enable { rust_analyzer = {}; } - // optionalAttrs config.development.web { + // optionalAttrs config.development.web.enable { ts_ls = {}; phpactor = {}; } - // optionalAttrs config.development.zig { + // optionalAttrs config.development.zig.enable { zls = {}; }; highlight = { |