1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 19:30:01 +02:00
dotfiles/nvim/lua/user/plugins/lang/lua.lua

33 lines
722 B
Lua

local lspservers = {
lua_ls = {
cmd = { "/opt/luals/bin/lua-language-server", "--logpath=~/.local/luals/logs" },
settings = {
Lua = {
runtime = {
version = "LuaJIT",
},
workspace = {
checkThirdParty = false,
library = {
vim.env.VIMRUNTIME,
},
},
},
},
},
}
return {
{
"nvim-treesitter/nvim-treesitter",
opts = {
ensure_installed = { "lua" }
}
},
{
"neovim/nvim-lspconfig",
opts = {
servers = lspservers
}
}
}