Files
wezterm-config/wezterm.lua
T
rootiest 35ec6f0de6 feat(wezterm): initial commit
The initial release of the rootiest-wezterm config

BREAKING CHANGE: First Commit!
2024-08-16 14:50:01 -04:00

26 lines
1.0 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()
-- Load Plugins
require("plugins").setup()
-- Return configuration
return CONFIG