aboutsummaryrefslogtreecommitdiff
path: root/lua/user/lsp/settings/sumneko_lua.lua
blob: ea650f053cc17a27e20ad5742c5ae995eb562621 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
return {
  settings = {
	Lua = {
	  diagnostics = {
		globals = { "vim" },
	  },
	  workspace = {
		library = {
		  [vim.fn.expand("$VIMRUNTIME/lua")] = true,
		  [vim.fn.expand("config") .. "/lua"] = true,
		},
	  },
	},
  },
}