1
0
Fork 0
vdotfiles/gui/.config/wezterm/overrides.lua

71 lines
1.6 KiB
Lua
Raw Normal View History

2023-10-06 19:48:04 +03:00
local wt = require('wezterm')
local fn = require('functions')
2023-10-06 19:48:04 +03:00
local current = {}
2023-10-16 12:31:18 +03:00
-- colors
2024-03-28 16:45:27 +02:00
local color_scheme = 'Solarized Light (Gogh)'
local tab_fg = '#657b83'
local tab_bg = '#eee8d5'
local tab_bg_active = '#fdf6e3'
local cursor_fg = '#fdf6e3'
local cursor_bg = '#cb4b16'
2023-10-16 12:31:18 +03:00
-- fonts
local fonts = wt.config_builder()
2024-05-20 18:11:54 +03:00
fonts.font = wt.font('Fantasque Sans Mono')
fonts.harfbuzz_features = {'calt=0'}
2024-05-14 19:50:08 +03:00
fonts.font_size = fn.set_by_os{
2024-05-20 18:11:54 +03:00
Darwin = 15,
others = 12
2024-05-14 19:50:08 +03:00
}
-- theme
local theme = wt.config_builder()
2023-10-16 12:31:18 +03:00
theme.color_scheme = color_scheme
theme.colors = {
2023-10-16 12:31:18 +03:00
cursor_fg = cursor_fg,
cursor_bg = cursor_bg,
tab_bar = {
background = tab_bg,
active_tab = {
fg_color = tab_fg,
bg_color = tab_bg_active
},
inactive_tab = {
fg_color = tab_fg,
bg_color = tab_bg
}
}
}
theme.colors.tab_bar.inactive_tab_hover = theme.colors.tab_bar.inactive_tab
theme.window_frame = {
active_titlebar_bg = tab_bg,
inactive_titlebar_bg = tab_bg
}
2023-10-06 19:48:04 +03:00
local overrides = {
fonts = fonts,
theme = theme
2023-10-06 19:48:04 +03:00
}
local function toggle_overrides(window, overrides)
for k, v in pairs(overrides) do
if current[k] == v then
current[k] = nil
else
current[k] = v
end
end
window:set_config_overrides(current)
end
local function reset_overrides(window)
window:set_config_overrides()
current = {}
end
wt.on('override-theme', function(window) toggle_overrides(window, overrides.theme) end)
wt.on('override-fonts', function(window) toggle_overrides(window, overrides.fonts) end)
wt.on('override-reset', reset_overrides)