28 lines
451 B
Lua
28 lines
451 B
Lua
return {
|
|
{
|
|
"neovim/nvim-lspconfig",
|
|
opts = {
|
|
servers = {
|
|
-- Lua
|
|
lua_ls = {
|
|
root_markers = {
|
|
".luarc.json",
|
|
".git",
|
|
},
|
|
},
|
|
-- Nix
|
|
nil_ls = {},
|
|
-- Typescript
|
|
vtsls = {},
|
|
-- Haskell
|
|
hls = {},
|
|
-- Copilot
|
|
copilot = { enabled = true },
|
|
},
|
|
codelens = {
|
|
enable = true,
|
|
},
|
|
},
|
|
},
|
|
}
|