Files
wezterm-config/plugs.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

19 lines
681 B
Lua

-- ╭─────────────────────────────────────────────────────────╮
-- │ PLUGINS │
-- ╰─────────────────────────────────────────────────────────╯
-- List of plugins to load
local plugins = {
"battery",
"hyperlinks",
"resurrect",
"smart_splits",
"tabline",
"plugin_mgr",
}
-- Load all plugins
for _, plugin in ipairs(plugins) do
require("plugins." .. plugin)
end