nvim/lua/lsp/lua.lua

32 lines
846 B
Lua
Raw Normal View History

2023-11-22 12:59:44 +08:00
local runtime_path = vim.split(package.path, ';')
2023-11-24 12:59:48 +08:00
2023-11-22 12:59:44 +08:00
table.insert(runtime_path, "lua/?.lua")
table.insert(runtime_path, "lua/?/init.lua")
2023-11-24 12:59:48 +08:00
2023-11-22 12:59:44 +08:00
return {
2023-11-24 12:59:48 +08:00
capabilities = require('cmp_nvim_lsp').default_capabilities(),
2023-11-22 12:59:44 +08:00
settings = {
2023-11-24 12:59:48 +08:00
2023-11-22 12:59:44 +08:00
Lua = {
runtime = {
-- Tell the language server which version of Lua you're using (most likely LuaJIT in the case of Neovim)
version = 'LuaJIT',
-- Setup your lua path
path = runtime_path,
},
diagnostics = {
2024-01-01 15:55:58 +08:00
globals = {'vim', 'G', 'yield', 'Candidate'},
2023-11-22 12:59:44 +08:00
},
workspace = {
-- Make the server aware of Neovim runtime files
library = vim.api.nvim_get_runtime_file("", true),
},
-- Do not send telemetry data containing a randomized but unique identifier
telemetry = {
enable = false
},
},
},
}