feat(nvim): add formatter and maven support for java
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-02-01 19:39:16 -05:00
parent 201041eca6
commit 33abc7934e

View file

@ -131,7 +131,13 @@ in {
}; };
# Java # Java
java.jdt.ls = { java = {
maven.downloadSources = true;
eclipse.downloadSources = true;
format.settings.url = "eclipse-formatter.xml";
jdt.ls = {
java.home = "${javaSdk}"; java.home = "${javaSdk}";
statusIcons = { statusIcons = {
"busy" = "Busy"; "busy" = "Busy";
@ -140,6 +146,7 @@ in {
"error" = "Error"; "error" = "Error";
}; };
}; };
};
# Bash # Bash
bashIde.shellcheckPath = "${pkgs.shellcheck}/bin/shellcheck"; bashIde.shellcheckPath = "${pkgs.shellcheck}/bin/shellcheck";