11 lines
348 B
Lua
11 lines
348 B
Lua
return {
|
|
"neovim/nvim-lspconfig",
|
|
-- cond = not require("commons").tools.is_version_gte_0_11(),
|
|
dependencies = { { "saghen/blink.cmp" } },
|
|
key = {
|
|
{ "<leader>gd", vim.lsp.buf.definition, { "n" }, desc = "Go to definition" },
|
|
{ "<leader>gD", vim.lsp.buf.declaration, { "n" }, desc = "Go to declaration" },
|
|
},
|
|
config = function() end,
|
|
}
|