mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 17:58:38 +02:00
plugins/jdtls: fix binary name
This commit is contained in:
parent
2c99cefa91
commit
f285a958c0
1 changed files with 2 additions and 2 deletions
|
@ -25,7 +25,7 @@ in {
|
||||||
plugins.nvim-jdtls = {
|
plugins.nvim-jdtls = {
|
||||||
enable = true;
|
enable = true;
|
||||||
cmd = [
|
cmd = [
|
||||||
"$\{pkgs.jdt-language-server}/bin/jdt-language-server"
|
(lib.getExe pkgs.jdt-language-server)
|
||||||
"-data" "/path/to/your/workspace"
|
"-data" "/path/to/your/workspace"
|
||||||
"-configuration" "/path/to/your/configuration"
|
"-configuration" "/path/to/your/configuration"
|
||||||
"-foo" "bar"
|
"-foo" "bar"
|
||||||
|
@ -105,7 +105,7 @@ in {
|
||||||
else cfg.data;
|
else cfg.data;
|
||||||
in
|
in
|
||||||
[
|
[
|
||||||
"${pkgs.jdt-language-server}/bin/jdt-language-server"
|
(lib.getExe pkgs.jdt-language-server)
|
||||||
]
|
]
|
||||||
++ ["-data" data]
|
++ ["-data" data]
|
||||||
++ (
|
++ (
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue