diff --git a/.config/wezterm/wezterm.lua b/.config/wezterm/wezterm.lua new file mode 100644 index 0000000..7180740 --- /dev/null +++ b/.config/wezterm/wezterm.lua @@ -0,0 +1,32 @@ +local wezterm = require("wezterm") + +return { + -- window_background_opacity = 1, + window_background_opacity = 1, + color_scheme = "Catppuccin Mocha", + font = wezterm.font("Iosevka Nerd Font", { weight = "DemiBold", stretch = "Normal", style = "Normal" }), + font_size = 14, + freetype_load_target = "Light", + freetype_render_target = "Normal", + hide_tab_bar_if_only_one_tab = true, + inactive_pane_hsb = { + hue = 5.0, + saturation = 1.0, + brightness = 1.0, + }, + native_macos_fullscreen_mode = true, + use_dead_keys = false, + window_background_image_hsb = { + brightness = 0.8, + hue = 1.0, + saturation = 1.0, + }, + audible_bell = "Disabled", + visual_bell = { + fade_in_duration_ms = 5, + fade_out_duration_ms = 5, + }, + colors = { + visual_bell = "#f0f0f0", + }, +}