-- https://github.com/neovim/nvim-lspconfig/blob/master/lsp/lua_ls.lua return { cmd = { "lua-language-server", }, filetypes = { "lua", }, root_markers = { "lazy-lock.json", ".luarc.json", ".luarc.jsonc", ".luacheckrc", ".stylua.toml", ".git", }, settings = { Lua = { runtime = { version = 'LuaJIT', }, workspace = { library = vim.api.nvim_get_runtime_file("", true) } } }, single_file_support = true, log_level = vim.lsp.protocol.MessageType.Warning, }