Remove LSP for lua

As I don't write any lua
This commit is contained in:
Daniel Siepmann 2023-10-18 13:33:40 +02:00
parent 4ce11817ff
commit 47f1a2a9e8
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4

View file

@ -314,38 +314,6 @@ in {
'language-server',
},
})
local runtime_path = vim.split(package.path, ';')
table.insert(runtime_path, "lua/?.lua")
table.insert(runtime_path, "lua/?/init.lua")
require('lspconfig').lua_ls.setup({
cmd = {
'${pkgs.lua-language-server}/bin/lua-language-server',
},
settings = {
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 = {
-- Get the language server to recognize the `vim` global
globals = {'vim'},
},
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,
},
},
},
})
'';
}