2022-06-13 12:26:11 -05:00
|
|
|
local wezterm = require("wezterm")
|
2022-12-14 10:46:24 -06:00
|
|
|
local catppuccin = require("colors/catppuccin").setup({})
|
2022-07-05 09:42:30 -05:00
|
|
|
local keys = require("keys")
|
2022-06-13 12:26:11 -05:00
|
|
|
|
|
|
|
local padding = 10
|
2024-01-29 10:34:14 -06:00
|
|
|
local config = {}
|
|
|
|
|
|
|
|
if wezterm.config_builder then
|
|
|
|
config = wezterm.config_builder()
|
|
|
|
end
|
|
|
|
|
|
|
|
-- window_background_opacity = 0.9
|
|
|
|
config.check_for_updates = false
|
|
|
|
config.window_padding = {
|
|
|
|
left = padding,
|
|
|
|
right = padding,
|
|
|
|
top = padding,
|
|
|
|
bottom = padding,
|
2022-06-13 12:26:11 -05:00
|
|
|
}
|
2024-01-29 10:34:14 -06:00
|
|
|
|
|
|
|
config.hide_mouse_cursor_when_typing = false
|
|
|
|
config.font = wezterm.font("MonoLisa Nerd Font")
|
|
|
|
config.adjust_window_size_when_changing_font_size = false
|
|
|
|
config.initial_cols = 80
|
|
|
|
config.colors = catppuccin
|
|
|
|
config.use_fancy_tab_bar = false
|
|
|
|
config.hide_tab_bar_if_only_one_tab = true
|
|
|
|
config.tab_bar_at_bottom = true
|
|
|
|
--config.disable_default_key_bindings = true
|
|
|
|
config.bold_brightens_ansi_colors = true
|
|
|
|
config.default_gui_startup_args = { "start", "--always-new-process" }
|
2024-02-06 11:45:25 -06:00
|
|
|
-- config.keys = keys.keys
|
2024-01-29 10:34:14 -06:00
|
|
|
return config
|