update(nvim): add java LSP

This commit is contained in:
Filippo Berto 2025-10-16 18:09:37 +02:00
parent 5bdf976581
commit 20e0b14112
No known key found for this signature in database
GPG key ID: F1D17F9BCEC62FBC
3 changed files with 9 additions and 0 deletions

7
hm/development/java.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
home.packages = [
pkgs.openjdk
pkgs.jdt-language-server
];
}