mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 11:24:55 +02:00
33 lines
656 B
Lua
33 lines
656 B
Lua
local lspservers = {
|
|
lua_ls = {
|
|
settings = {
|
|
Lua = {
|
|
hint = {
|
|
arrayIndex = "Disable",
|
|
paramName = "Literal",
|
|
},
|
|
runtime = {
|
|
version = "LuaJIT",
|
|
},
|
|
workspace = {
|
|
checkThirdParty = false,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
return {
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
opts = {
|
|
install = { "lua" }
|
|
}
|
|
},
|
|
{
|
|
"neovim/nvim-lspconfig",
|
|
opts = {
|
|
servers = lspservers
|
|
}
|
|
}
|
|
}
|