Skip to content

Commit 2967dcf

Browse files
committed
fix(lsp.servers): broken documentation links
1 parent 2ec5b24 commit 2967dcf

File tree

14 files changed

+14
-14
lines changed

14 files changed

+14
-14
lines changed

lua/modules/configs/completion/servers/bashls.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/server_configurations/bashls.lua
1+
-- https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/configs/bashls.lua
22
return {
33
cmd = { "bash-language-server", "start" },
44
filetypes = { "bash", "sh" },

lua/modules/configs/completion/servers/clangd.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ local function get_binary_path_list(binaries)
3333
return table.concat(path_list, ",")
3434
end
3535

36-
-- https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/server_configurations/clangd.lua
36+
-- https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/configs/clangd.lua
3737
return function(options)
3838
require("lspconfig").clangd.setup({
3939
on_attach = options.on_attach,

lua/modules/configs/completion/servers/dartls.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/server_configurations/dartls.lua
1+
-- https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/configs/dartls.lua
22
return {
33
cmd = { "dart", "language-server", "--protocol=lsp" },
44
filetypes = { "dart" },
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
-- https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/server_configurations/docker_compose_language_service.lua_ls
1+
-- https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/configs/docker_compose_language_service.lua
22
return {}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
-- https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/server_configurations/dockerls.lua
1+
-- https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/configs/dockerls.lua
22
return {}

lua/modules/configs/completion/servers/emmet_ls.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/server_configurations/emmet_ls.lua
1+
-- https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/configs/emmet_ls.lua
22
-- https://github.com/pedro757/emmet
33
-- npm i -g ls_emmet
44
return {

lua/modules/configs/completion/servers/gopls.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/server_configurations/gopls.lua
1+
-- https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/configs/gopls.lua
22
return {
33
flags = { debounce_text_changes = 500 },
44
cmd = { "gopls", "-remote=auto" },

lua/modules/configs/completion/servers/jsonls.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/server_configurations/jsonls.lua
1+
-- https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/configs/jsonls.lua
22
return {
33
flags = { debounce_text_changes = 500 },
44
settings = {

lua/modules/configs/completion/servers/ltex.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/server_configurations/ltex.lua
1+
-- https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/configs/ltex.lua
22
-- https://gist.github.com/lbiaggi/a3eb761ac2fdbff774b29c88844355b8
33

44
return function(options)

lua/modules/configs/completion/servers/lua_ls.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
-- https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/server_configurations/lua_ls.lua
1+
-- https://github.com/neovim/nvim-lspconfig/blob/master/lua/lspconfig/configs/lua_ls.lua
22
require("neodev").setup({
33
library = {
44
enabled = true, -- when not enabled, neodev will not change any settings to the LSP server

0 commit comments

Comments
 (0)