kitchen sink now don't support any version lower than 0.11.0 for lsp
- dap now works for java and c
This commit is contained in:
17
lua/conf/plugins/lspconfig.lua
Normal file
17
lua/conf/plugins/lspconfig.lua
Normal file
@ -0,0 +1,17 @@
|
||||
return { "neovim/nvim-lspconfig",
|
||||
disable = not vim.fn.has("nvim-0.10.0"),
|
||||
requires = {
|
||||
"mason-org/mason.nvim",
|
||||
"mason-org/mason-lspconfig.nvim"
|
||||
},
|
||||
function()
|
||||
require("core.lsp.functions").setup()
|
||||
require("mason-lspconfig").setup {
|
||||
ensure_added = {
|
||||
"clangd",
|
||||
"lua_ls",
|
||||
"jdtls"
|
||||
}
|
||||
}
|
||||
end
|
||||
}
|
Reference in New Issue
Block a user