Files
wezterm-config/plugs.lua
T
rootiest 9846e246ff 🚑 Quickfix(plugin-mgr): temporarily disable plugin manager
Temporarily disable plugin manager, pending some bugfixes:
  - Startup time: Maybe refreshing plugins at startup?
  - Debug logging: Is rather verbose in debug output
2024-10-07 13:34:30 -04:00

19 lines
683 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