mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-12-09 21:53:54 +00:00
languages/json: fix language server default cmd path in package
This commit is contained in:
parent
3e48f13c3c
commit
0982a84b09
2 changed files with 2 additions and 1 deletions
|
|
@ -301,6 +301,7 @@
|
||||||
`helmfile`s when both are enabled.
|
`helmfile`s when both are enabled.
|
||||||
- Fix YAML language module not activating LSP keybinds if the Helm language
|
- Fix YAML language module not activating LSP keybinds if the Helm language
|
||||||
module was also enabled.
|
module was also enabled.
|
||||||
|
- Fix `json` language module (default) language server not activating.
|
||||||
|
|
||||||
[TheColorman](https://github.com/TheColorman):
|
[TheColorman](https://github.com/TheColorman):
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
defaultServers = ["jsonls"];
|
defaultServers = ["jsonls"];
|
||||||
servers = {
|
servers = {
|
||||||
jsonls = {
|
jsonls = {
|
||||||
cmd = [(getExe' pkgs.vscode-langservers-extracted "vscode-json-languageserver") "--stdio"];
|
cmd = [(getExe' pkgs.vscode-langservers-extracted "vscode-json-language-server") "--stdio"];
|
||||||
filetypes = ["json" "jsonc"];
|
filetypes = ["json" "jsonc"];
|
||||||
init_options = {provideFormatter = true;};
|
init_options = {provideFormatter = true;};
|
||||||
root_markers = [".git"];
|
root_markers = [".git"];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue