dotfiles_wezterm/wezterm.lua

16 lines
418 B
Lua
Raw Normal View History

2024-12-18 11:11:12 +00:00
local wezterm = require 'wezterm'
local config = {}
2025-02-04 05:15:47 +00:00
local keybindings = require("keybindings")
local colorscheme = require("colorscheme")
local window_settings = require("window")
local text_settings = require("text")
local tab_and_pane_settings = require("tab_and_pane")
window_settings(config)
tab_and_pane_settings(config)
text_settings(config)
config.colors = colorscheme
config.keys = keybindings
2024-12-18 11:11:12 +00:00
return config