mirror of
https://github.com/jessebot/dot_files.git
synced 2025-10-01 01:48:43 +00:00
32 lines
774 B
Lua
32 lines
774 B
Lua
local wezterm = require 'wezterm'
|
|
|
|
return {
|
|
audible_bell = "Disabled",
|
|
font_size = 12,
|
|
hide_tab_bar_if_only_one_tab = true,
|
|
window_decorations = "RESIZE",
|
|
window_background_opacity = 0.7,
|
|
-- default terminal colors
|
|
colors = {
|
|
ansi = {
|
|
'#282727',
|
|
'#fe8ea2',
|
|
'#97e178',
|
|
'#f6f76a',
|
|
'#6eb3ec',
|
|
'#ef8ef6',
|
|
'#86f0e4',
|
|
'#dadfe0',
|
|
},
|
|
brights = {
|
|
'#282727',
|
|
'#fe8ea2',
|
|
'#97e178',
|
|
'#f6f76a',
|
|
'#6eb3ec',
|
|
'#ef8ef6',
|
|
'#86f0e4',
|
|
'#dadfe0',
|
|
},
|
|
},
|
|
}
|