mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-26 11:14:08 +00:00
53 lines
1.3 KiB
Lua
53 lines
1.3 KiB
Lua
local wezterm = require 'wezterm'
|
|
local config = wezterm.config_builder()
|
|
|
|
config.set_environment_variables = {
|
|
COLORTERM = 'truecolor',
|
|
}
|
|
|
|
-- Font and font size
|
|
config.font_size = 14.0
|
|
config.font = wezterm.font_with_fallback {
|
|
{
|
|
family = 'Operator Mono',
|
|
weight = 'Book',
|
|
},
|
|
'Operator Mono',
|
|
'JetBrainsMonoNL NFM Light',
|
|
'JetBrains Mono',
|
|
'Symbols Nerd Font Mono',
|
|
}
|
|
config.harfbuzz_features = { 'zero', 'ss01', 'cv05' }
|
|
|
|
-- Make the window a bit transparent
|
|
config.window_background_opacity = 0.98
|
|
|
|
-- Don't show tab bar
|
|
config.enable_tab_bar = false
|
|
|
|
-- Fix alt on macOS
|
|
config.send_composed_key_when_left_alt_is_pressed = true
|
|
|
|
-- Function to detect the theme based on appearance
|
|
function Scheme_for_appearance(appearance)
|
|
if appearance:find 'Dark' then
|
|
return 'Tokyo Night Storm'
|
|
else
|
|
return 'Tokyo Night Day'
|
|
end
|
|
end
|
|
|
|
-- Set the color scheme based on appearance
|
|
---@diagnostic disable-next-line: unused-local
|
|
wezterm.on('window-config-reloaded', function(window, pane)
|
|
local overrides = window:get_config_overrides() or {}
|
|
local appearance = window:get_appearance()
|
|
local scheme = Scheme_for_appearance(appearance)
|
|
if overrides.color_scheme ~= scheme then
|
|
overrides.color_scheme = scheme
|
|
window:set_config_overrides(overrides)
|
|
end
|
|
end)
|
|
|
|
return config
|