65917d380a
- Add user customization via automatically detected user.lua file - Reorganize config options into separate files - Reorganize plugin loaders into separate files
18 lines
666 B
Lua
18 lines
666 B
Lua
-- ╭─────────────────────────────────────────────────────────╮
|
|
-- │ PLUGINS │
|
|
-- ╰─────────────────────────────────────────────────────────╯
|
|
|
|
-- List of plugins to load
|
|
local plugins = {
|
|
"battery",
|
|
"hyperlinks",
|
|
"resurrect",
|
|
"smart_splits",
|
|
"tabline",
|
|
}
|
|
|
|
-- Load all plugins
|
|
for _, plugin in ipairs(plugins) do
|
|
require("plugins." .. plugin)
|
|
end
|