nixos-configs/homeManagerModules/neovim/langs/java/default.nix
matt1432 346077c0e0
All checks were successful
Discord / discord commits (push) Has been skipped
refactor(nvim): move packages out of config to devShells
2024-12-22 00:04:13 -05:00

79 lines
2.2 KiB
Nix

{
config,
lib,
pkgs,
...
}: let
inherit (lib) getExe mkIf;
cfg = config.programs.neovim;
javaSdk = pkgs.temurin-bin-21;
in {
config = mkIf cfg.enable {
programs = {
# We keep the packages here because java is a bit complicated
java = {
enable = true;
package = javaSdk;
};
neovim = {
extraLuaConfig =
# lua
''
vim.api.nvim_create_autocmd('FileType', {
pattern = 'java',
command = 'setlocal ts=4 sw=4 sts=0 expandtab',
});
'';
plugins = [
{
# TOOD: setup debugger https://github.com/mfussenegger/nvim-jdtls#debugger-via-nvim-dap
plugin = pkgs.vimPlugins.nvim-jdtls;
type = "lua";
config =
# lua
''
local startJdtls = function()
local config = {
capabilities = require('cmp_nvim_lsp').default_capabilities(),
cmd = { '${getExe pkgs.jdt-language-server}' },
root_dir = vim.fs.dirname(vim.fs.find(
{ 'gradlew', '.git', 'mvnw', 'pom.xml' },
{ upward = true }
)[1]),
settings = {
java = {
configuration = {
runtimes = {
{
name = 'JavaSE-21',
path = '${javaSdk}',
},
},
},
},
},
};
require('jdtls').start_or_attach(config);
end
vim.api.nvim_create_autocmd('FileType', {
pattern = 'java',
callback = startJdtls,
});
'';
}
];
};
};
};
# For accurate stack trace
_file = ./default.nix;
}