Files
wezterm-config/wezterm.lua
T
rootiest b7897d344d Test multiplatform support
Testing changes to better support other platforms
2024-10-01 10:52:37 -04:00

41 lines
1.4 KiB
Lua

-- __ __ ________
-- / | _ / | / |
-- $$ | / \ $$ | ______ ________$$$$$$$$/______ ______ _____ ____
-- $$ |/$ \$$ | / \ / | $$ | / \ / \ / \/ \
-- $$ /$$$ $$ |/$$$$$$ |$$$$$$$$/ $$ |/$$$$$$ |/$$$$$$ |$$$$$$ $$$$ |
-- $$ $$/$$ $$ |$$ $$ | / $$/ $$ |$$ $$ |$$ | $$/ $$ | $$ | $$ |
-- $$$$/ $$$$ |$$$$$$$$/ /$$$$/__ $$ |$$$$$$$$/ $$ | $$ | $$ | $$ |
-- $$$/ $$$ |$$ |/$$ | $$ |$$ |$$ | $$ | $$ | $$ |
-- $$/ $$/ $$$$$$$/ $$$$$$$$/ $$/ $$$$$$$/ $$/ $$/ $$/ $$/
--------------------------------------------------------------------------------
-- https://github.com/wez/wezterm/
-- Load WezTerm module
WEZTERM = require("wezterm")
-- Load Config Builder
CONFIG = WEZTERM.config_builder()
-- Load Options
--require("options").setup()
local configs = require("configs")
for k, v in pairs(configs) do
CONFIG[k] = v
end
-- Load Plugins
require("plugins.hyperlinks")
require("plugins.resurrect")
require("plugins.smart_splits")
require("plugins.tabline")
--------- Update Plugins ----------
---Running this may cause slowdowns
-----------------------------------
-- WEZTERM.plugin.update_all() ----
-----------------------------------
-- Return configuration
return CONFIG