Dot_Files/.config/wezterm/wezterm.lua

14 lines
448 B
Lua

local wlib = require("wlib")
-- NOTE: Should be merged
local events = require("config.events")
local fonts = require("config.fonts")
local theme = require("config.theme.theme")
local tabbar = require("config.tabbar")
local rendering = require("config.rendering")
local keybinds = require("config.keybinds")
local misc = require("config.misc")
local config = wlib.Table.merge(events, fonts, theme, tabbar, misc, rendering, keybinds)
return config