diff options
author | kylo252 <[email protected]> | 2021-10-07 17:47:53 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-10-07 17:47:53 +0200 |
commit | c0e3c8d43ae6ca011e4036329ae31115957d1394 (patch) | |
tree | f989edf2203b225d407dd53b7bef95a589d6e123 /lua/utils/hooks.lua | |
parent | 0ad60e90a9b0dd557df10f73bec344e88549a9d7 (diff) |
feat(lsp): handle user configuration in setup() (#1707)
Diffstat (limited to 'lua/utils/hooks.lua')
-rw-r--r-- | lua/utils/hooks.lua | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/lua/utils/hooks.lua b/lua/utils/hooks.lua new file mode 100644 index 00000000..fa667cfd --- /dev/null +++ b/lua/utils/hooks.lua @@ -0,0 +1,33 @@ +local M = {} + +local Log = require "core.log" +local in_headless = #vim.api.nvim_list_uis() == 0 + +function M.run_pre_update() + Log:debug "Starting pre-update hook" +end + +---Reset any startup cache files used by Packer and Impatient +---Tip: Useful for clearing any outdated settings +function M.reset_cache() + _G.__luacache.clear_cache() + require("plugin-loader"):cache_reset() +end + +function M.run_post_update() + M.reset_cache() + Log:debug "Starting post-update hook" + package.loaded["lsp.templates"] = nil + require("lsp.templates").generate_templates() + + if not in_headless then + vim.schedule(function() + require("packer").install() + -- TODO: add a changelog + vim.notify("Update complete", vim.log.levels.INFO) + vim.cmd "LspStart" + end) + end +end + +return M |