Skip to content

Commit

Permalink
updated path to remove unneccessary prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
deverts committed Nov 18, 2024
1 parent ddf319a commit 31bb584
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/lspconfig/configs/pkl_lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ local util = require 'lspconfig.util'

return {
default_config = {
cmd = { 'java', '-jar', 'path/to/pkl-lsp.jar' },
cmd = { 'java', '-jar', 'pkl-lsp.jar' },
filetypes = { 'pkl' },
root_dir = util.root_pattern('.git'),
single_file_support = true,
Expand All @@ -15,7 +15,7 @@ Retrieve or build the `pkl-lsp` jar from the Git repo. You can then configure `p
```lua
require('lspconfig').pkl_lsp.setup{
cmd = { 'java', '-jar', 'path/to/pkl-lsp.jar' },
cmd = { 'java', '-jar', '/path/to/pkl-lsp.jar' },
}
```
]],
Expand Down

0 comments on commit 31bb584

Please sign in to comment.