Skip to content

Commit

Permalink
plugins/nvim-jdtls: allow lua on nvim-jdtls.data
Browse files Browse the repository at this point in the history
Make it possible to set data directory with lua, so it can be project-dependent.
  • Loading branch information
jcszymansk committed Aug 25, 2024
1 parent 8234ee8 commit bb8ecad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/languages/nvim-jdtls.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ in
'';

data = mkOption {
type = types.nullOr types.str;
type = helpers.nixvimTypes.maybeRaw (with types; nullOr str);
default = null;
example = "/home/YOUR_USERNAME/.cache/jdtls/workspace";
description = ''
Expand Down

0 comments on commit bb8ecad

Please sign in to comment.