summaryrefslogtreecommitdiff
path: root/lua/core/commands.lua
diff options
context:
space:
mode:
authorkylo252 <[email protected]>2021-10-07 17:47:53 +0200
committerGitHub <[email protected]>2021-10-07 17:47:53 +0200
commitc0e3c8d43ae6ca011e4036329ae31115957d1394 (patch)
treef989edf2203b225d407dd53b7bef95a589d6e123 /lua/core/commands.lua
parent0ad60e90a9b0dd557df10f73bec344e88549a9d7 (diff)
feat(lsp): handle user configuration in setup() (#1707)
Diffstat (limited to 'lua/core/commands.lua')
-rw-r--r--lua/core/commands.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/core/commands.lua b/lua/core/commands.lua
index f732c9a2..6ceeaaff 100644
--- a/lua/core/commands.lua
+++ b/lua/core/commands.lua
@@ -11,8 +11,8 @@ M.defaults = {
endfunction
]],
-- :LvimInfo
- [[command! LvimInfo lua require('core.info').toggle_popup(vim.bo.filetype)]],
- [[ command! LvimCacheReset lua require('bootstrap').reset_cache() ]],
+ [[ command! LvimInfo lua require('core.info').toggle_popup(vim.bo.filetype) ]],
+ [[ command! LvimCacheReset lua require('utils.hooks').reset_cache() ]],
[[ command! LvimUpdate lua require('bootstrap').update() ]],
}