Files
wezterm-config/plugins/plugin_mgr.lua
T
rootiest 283e6946fa feat: implement plugin manager
- Allows running the following from the command palette (Ctrl+;)
  - Update All Plugins: Updates all plugins
  - List All Plugins: Lists all installed plugins
2024-10-05 04:48:32 -04:00

12 lines
599 B
Lua

-- ╭─────────────────────────────────────────────────────────╮
-- │ PLUGIN MANAGER │
-- ╰─────────────────────────────────────────────────────────╯
local M = {}
local wezterm = WEZTERM
PLUGIN_MGR = wezterm.plugin.require("https://gitlab.com/alecthegeek/wezterm-plugin-mgr.git")
return M