summaryrefslogtreecommitdiff
path: root/lua/utils/hooks.lua
diff options
context:
space:
mode:
authorkylo252 <[email protected]>2021-10-21 07:48:10 +0200
committerkylo252 <[email protected]>2021-10-21 07:48:10 +0200
commit30de3736baec9a72134205de91f3388e3ea68bcf (patch)
treec0079f51d68c61316726f104bae963c5f0371571 /lua/utils/hooks.lua
parentb98264042f558751483e2c993ebed11a5bcbb1de (diff)
parent25747cfff457d5375b6141588d81017ca515ffcb (diff)
Merge remote-tracking branch 'origin/rolling'
Diffstat (limited to 'lua/utils/hooks.lua')
-rw-r--r--lua/utils/hooks.lua33
1 files changed, 0 insertions, 33 deletions
diff --git a/lua/utils/hooks.lua b/lua/utils/hooks.lua
deleted file mode 100644
index fa667cfd..00000000
--- a/lua/utils/hooks.lua
+++ /dev/null
@@ -1,33 +0,0 @@
-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