Add yazi, cleanup colors

This commit is contained in:
Ian Keane 2026-08-01 12:36:16 -04:00
parent d79c97622f
commit 463f4d53f9
9 changed files with 213 additions and 0 deletions

View file

@ -16,4 +16,15 @@ config.enable_tab_bar = false
config.enable_wayland = true
config.window_decorations = "NONE"
-- Fix F7/F8 not working in tcell-based TUI apps (e.g. senpai)
-- Disable kitty keyboard protocol and use legacy CSI sequences
config.enable_kitty_keyboard = false
-- Send the standard VT/terminfo sequences for function keys (e.g. F7=\E[18~, F8=\E[19~)
-- that tcell-based apps expect
config.keys = {
{ key = 'F7', mods = '', action = wezterm.action.SendString('\x1b[18~') },
{ key = 'F8', mods = '', action = wezterm.action.SendString('\x1b[19~') },
}
return config