Dot_Files/.config/wezterm/wezterm.lua

12 lines
377 B
Lua
Raw Normal View History

2022-06-19 16:03:11 -05:00
local mergeable_table = require('lib').mergeable_table
2022-06-20 03:15:17 -05:00
-- NOTE: Should be merged
2022-06-19 16:03:11 -05:00
local fonts = require('config.fonts')
local theme = require('config.theme')
local rendering = require('config.rendering')
2022-06-20 03:15:17 -05:00
local keybinds = require('config.keybinds')
2022-06-19 16:03:11 -05:00
local misc = require('config.misc')
2022-06-20 03:15:17 -05:00
local config = mergeable_table.merge(fonts, theme, misc, rendering, keybinds)
2022-06-19 16:03:11 -05:00
return config