kitty: add action aliases config (#6538)

This commit is contained in:
gmvar 2025-02-27 10:12:56 -08:00 committed by GitHub
parent 0208592b59
commit 343646e092
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 26 additions and 0 deletions

View file

@ -12,6 +12,9 @@ enable_audio_bell no
scrollback_lines 10000
update_check_interval 0
action_alias launch_tab launch --cwd=current --type=tab
action_alias launch_window launch --cwd=current --type=os-window
map ctrl+c copy_or_interrupt
map ctrl+f>2 set_font_size 20

View file

@ -24,6 +24,11 @@
"ctrl+f>2" = "set_font_size 20";
};
actionAliases = {
"launch_tab" = "launch --cwd=current --type=tab";
"launch_window" = "launch --cwd=current --type=os-window";
};
environment = { LS_COLORS = "1"; };
};