diff options
| author | Christian Chiarulli <[email protected]> | 2022-10-03 00:56:23 +0000 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2022-10-03 00:56:23 +0000 | 
| commit | 1c03ac80529d90c7a824a581172b6e41e6ae237b (patch) | |
| tree | bbcee88ef07eda8658e4907c8a511625aa26a9bf /lua/lvim/lsp/providers | |
| parent | 488d95b3b84879a178692557cb7a9c683bc8c36b (diff) | |
feat: reload and lir color update (#3123)
Diffstat (limited to 'lua/lvim/lsp/providers')
| -rw-r--r-- | lua/lvim/lsp/providers/sumneko_lua.lua | 8 | 
1 files changed, 7 insertions, 1 deletions
| diff --git a/lua/lvim/lsp/providers/sumneko_lua.lua b/lua/lvim/lsp/providers/sumneko_lua.lua index ef159e1c..948f1fd9 100644 --- a/lua/lvim/lsp/providers/sumneko_lua.lua +++ b/lua/lvim/lsp/providers/sumneko_lua.lua @@ -44,8 +44,14 @@ local opts = {    settings = {      Lua = {        telemetry = { enable = false }, +      runtime = { +        version = "LuaJIT", +        special = { +          reload = "require", +        }, +      },        diagnostics = { -        globals = { "vim", "lvim", "packer_plugins" }, +        globals = { "vim", "lvim", "packer_plugins", "reload" },        },        workspace = default_workspace,      }, | 
