dotfiles/home/private_dot_config/wezterm/wezterm.lua

33 lines
813 B
Lua
Raw Normal View History

2022-06-13 12:26:11 -05:00
local wezterm = require("wezterm")
2022-07-05 09:42:30 -05:00
local catppuccin = require("colors/catppuccin").setup{}
local keys = require("keys")
2022-06-13 12:26:11 -05:00
-- add wezterm to title for wm usage
wezterm.on("format-window-title",
function()
return " - Wezterm"
end
)
local padding = 10
return {
window_background_opacity = 0.9,
window_padding = {
left = padding,
right = padding,
top = padding,
bottom = padding,
},
font = wezterm.font("MonoLisa NF"),
adjust_window_size_when_changing_font_size = false,
colors = catppuccin,
use_fancy_tab_bar = false,
hide_tab_bar_if_only_one_tab = true,
tab_bar_at_bottom = true,
disable_default_key_bindings = true,
bold_brightens_ansi_colors = true,
2022-07-26 14:54:34 -05:00
default_gui_startup_args = {"start","--always-new-process"},
2022-07-05 09:42:30 -05:00
keys = keys.keys,
key_tables = keys.key_tables,
2022-06-13 12:26:11 -05:00
}