mirror of
https://github.com/harivansh-afk/nvim.git
synced 2026-04-15 07:04:47 +00:00
25 lines
563 B
Lua
25 lines
563 B
Lua
-- Lua language server configuration
|
|
return {
|
|
settings = {
|
|
Lua = {
|
|
diagnostics = {
|
|
globals = { "vim" },
|
|
},
|
|
runtime = {
|
|
version = "LuaJIT",
|
|
},
|
|
workspace = {
|
|
checkThirdParty = false,
|
|
library = {
|
|
vim.env.VIMRUNTIME,
|
|
},
|
|
},
|
|
telemetry = {
|
|
enable = false,
|
|
},
|
|
hint = {
|
|
enable = true,
|
|
},
|
|
},
|
|
},
|
|
}
|