aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/dot_config/nvim/lua/config/update.lua
diff options
context:
space:
mode:
Diffstat (limited to 'dot_config/nvim/lua/config/update.lua')
-rw-r--r--dot_config/nvim/lua/config/update.lua11
1 files changed, 4 insertions, 7 deletions
diff --git a/dot_config/nvim/lua/config/update.lua b/dot_config/nvim/lua/config/update.lua
index bc7ee3d..7910dee 100644
--- a/dot_config/nvim/lua/config/update.lua
+++ b/dot_config/nvim/lua/config/update.lua
@@ -1,10 +1,10 @@
-- Update orchestrator. Invoked from the justfile via:
-- nvim +'lua require("config.update").run()'
--
--- Cleans orphan plugins, applies plugin updates without prompting, then
--- runs :MasonToolsUpdateSync. Run interactively (not --headless) so the
--- diff buffer that vim.pack.update opens is actually visible — that
--- buffer IS the changelog. Quit manually with :qa once reviewed.
+-- Cleans orphan plugins then applies plugin updates without prompting.
+-- Run interactively (not --headless) so the diff buffer that
+-- vim.pack.update opens is actually visible — that buffer IS the
+-- changelog. Quit manually with :qa once reviewed.
local M = {}
@@ -34,9 +34,6 @@ function M.run()
print("[pack] updating plugins…")
vim.pack.update(nil, { force = true })
-
- print("[mason] updating tools…")
- vim.cmd("MasonToolsUpdateSync")
end
return M