Remove Java stuff.

This commit is contained in:
Kevin Baensch 2022-01-22 12:07:50 +01:00
parent 843e5ea6ad
commit f7a3f60249
Signed by: derped
GPG key ID: C0F1D326C7626543
2 changed files with 0 additions and 30 deletions

View file

@ -44,17 +44,5 @@ mkIf (elem "emacs::lsp" config.machine.pkgs) {
after = [ "lsp-ui" ]
++ optional (elem "emacs::flycheck" config.machine.pkgs) "flycheck";
};
lsp-java = {
enable = (elem "emacs::java" config.machine.pkgs);
command = [ "lsp-java-enable" ];
hook = [ ''
(java-mode . (lambda ()
(lsp-java-enable)
(lsp-ui-sideline-mode)
(lsp-ui-flycheck-enable t)
(setq-local company-backends (list 'company-lsp))))
'' ];
};
};
}