Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
neovim-config/lua/user/lsp/settings/sumneko_lua.lua

12 lines
156 B
Lua
Raw Normal View History

2022-07-09 13:10:31 +00:00
local lspconfig = require("lspconfig")
lspconfig.sumneko_lua.setup({
settings = {
Lua = {
diagnostics = {
globals = { "vim" },
},
},
},
})