21 lines
439 B
Lua
21 lines
439 B
Lua
local wezterm = require 'wezterm'
|
|
local config = {}
|
|
|
|
-- Display Configuration
|
|
|
|
config.font = wezterm.font 'NotoMono Nerd Font'
|
|
config.color_scheme = 'Catppuccin Macchiato'
|
|
config.window_background_opacity = 0.7
|
|
|
|
-- Tab Configuration
|
|
|
|
config.hide_tab_bar_if_only_one_tab = true
|
|
config.tab_bar_at_bottom = true
|
|
config.use_fancy_tab_bar = false
|
|
|
|
-- Stop Confirming shit please
|
|
|
|
config.window_close_confirmation = 'NeverPrompt'
|
|
|
|
return config
|