Files
dotfiles/wezterm/wezterm.lua

29 lines
618 B
Lua

local wezterm = require("wezterm")
local c = {}
-- Display Configuration
c.font = wezterm.font("NotoMono Nerd Font")
c.color_scheme = "Catppuccin Macchiato"
c.window_background_opacity = 0.7
c.window_decorations = "NONE"
c.visual_bell = {
fade_in_function = "EaseIn",
fade_in_duration_ms = 150,
fade_out_function = "EaseOut",
fade_out_duration_ms = 150,
}
-- Tab Configuration
c.hide_tab_bar_if_only_one_tab = false
c.tab_bar_at_bottom = true
c.use_fancy_tab_bar = false
c.switch_to_last_active_tab_when_closing_tab = true
-- Stop Confirming shit please
c.window_close_confirmation = "NeverPrompt"
return c