aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGeorge <george@primalskill.com>2025-04-22 14:42:42 +0300
committerGitHub <noreply@github.com>2025-04-22 04:42:42 -0700
commit84dbb703db46f45e0497d0a2ff1a9fdac12fc909 (patch)
treed4a3f33336d6ce81bd0da47b85f5d37cf7824cc5 /doc
parentdocs: update configs.md (diff)
downloadnvim-lspconfig-84dbb703db46f45e0497d0a2ff1a9fdac12fc909.tar
nvim-lspconfig-84dbb703db46f45e0497d0a2ff1a9fdac12fc909.tar.gz
nvim-lspconfig-84dbb703db46f45e0497d0a2ff1a9fdac12fc909.tar.bz2
nvim-lspconfig-84dbb703db46f45e0497d0a2ff1a9fdac12fc909.tar.lz
nvim-lspconfig-84dbb703db46f45e0497d0a2ff1a9fdac12fc909.tar.xz
nvim-lspconfig-84dbb703db46f45e0497d0a2ff1a9fdac12fc909.tar.zst
nvim-lspconfig-84dbb703db46f45e0497d0a2ff1a9fdac12fc909.zip
docs(sqls): fix install instructions #3758
Diffstat (limited to 'doc')
-rw-r--r--doc/configs.md2
-rw-r--r--doc/configs.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/configs.md b/doc/configs.md
index ac2b31a7..11c3fecb 100644
--- a/doc/configs.md
+++ b/doc/configs.md
@@ -10153,7 +10153,7 @@ vim.lsp.config('sqls', {
...
})
```
-Sqls can be installed via `go get github.com/sqls-server/sqls`. Instructions for compiling Sqls from the source can be found at [sqls-server/sqls](https://github.com/sqls-server/sqls).
+Sqls can be installed via `go install github.com/sqls-server/sqls@latest`. Instructions for compiling Sqls from the source can be found at [sqls-server/sqls](https://github.com/sqls-server/sqls).
Snippet to enable the language server:
```lua
diff --git a/doc/configs.txt b/doc/configs.txt
index 98064681..55af312a 100644
--- a/doc/configs.txt
+++ b/doc/configs.txt
@@ -9544,7 +9544,7 @@ vim.lsp.config('sqls', {
...
})
```
-Sqls can be installed via `go get github.com/sqls-server/sqls`. Instructions for compiling Sqls from the source can be found at [sqls-server/sqls](https://github.com/sqls-server/sqls).
+Sqls can be installed via `go install github.com/sqls-server/sqls@latest`. Instructions for compiling Sqls from the source can be found at [sqls-server/sqls](https://github.com/sqls-server/sqls).
Snippet to enable the language server: >lua
vim.lsp.enable('sqls')