feat(nvim): add config options to disable some LSPs

This commit is contained in:
matt1432 2025-01-09 09:56:48 -05:00
parent aeae84f66d
commit 5cb0b971cc
6 changed files with 29 additions and 4 deletions
homeManagerModules/neovim/langs/java

View file

@ -10,7 +10,7 @@
javaSdk = pkgs.temurin-bin-21;
in {
config = mkIf cfg.enable {
config = mkIf (cfg.enable && cfg.ideConfig.enableJava) {
programs = {
# We keep the packages here because java is a bit complicated
java = {