summaryrefslogtreecommitdiff
path: root/lua/user/lsp/settings/sumneko_lua.lua
blob: 0ac454a7202611b17a652935e6c5524dcbbe8efa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
return {
	settings = {

		Lua = {
			diagnostics = {
				globals = { "vim" },
			},
			workspace = {
				library = {
					[vim.fn.expand("$VIMRUNTIME/lua")] = true,
					[vim.fn.stdpath("config") .. "/lua"] = true,
				},
			},
		},
	},
}