splits out configuration into central modules

This commit is contained in:
Dennis Schoepf 2025-05-29 18:26:46 +02:00
parent 58ffb417dd
commit b44654b9a2
63 changed files with 20 additions and 20 deletions

View file

@ -1,21 +0,0 @@
local wezterm = require("wezterm")
local appearance = require("appearance")
local tab_bar = require("tab_bar")
local startup = require("startup")
local keybindings = require("keybindings")
local overrides = require("overrides")
local config = {}
if wezterm.config_builder then
---@diagnostic disable-next-line: lowercase-global
config = wezterm.config_builder()
end
appearance.apply_to_config(config)
tab_bar.apply_to_config(config)
startup.apply_to_config(config)
keybindings.apply_to_config(config)
overrides.apply_to_config(config)
return config