diff options
author | Christian Segundo | 2024-07-12 17:23:45 +0200 |
---|---|---|
committer | Christian Segundo | 2024-07-12 17:23:45 +0200 |
commit | 07ef6f271a0864f6337dbdfeb784a72926d6ddd1 (patch) | |
tree | e3c41477f4cff2f91bf6543a1a4c6f85b55a21d3 | |
parent | 389f81243903508127131d8c20fd6a222e0fcadc (diff) | |
download | config-07ef6f271a0864f6337dbdfeb784a72926d6ddd1.tar.gz |
fix jsonls
-rw-r--r-- | lua/plugins/lang/json.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/plugins/lang/json.lua b/lua/plugins/lang/json.lua index 0df3a15..1c33afb 100644 --- a/lua/plugins/lang/json.lua +++ b/lua/plugins/lang/json.lua @@ -19,7 +19,7 @@ return { client.server_capabilities.documentFormattingProvider = true client.server_capabilities.documentRangeFormattingProvider = true end, - cmd = { "json-language-server", "--stdio" }, + cmd = { "vscode-json-language-server", "--stdio" }, } end end, |