Add layout shortcuts to kitty

This commit is contained in:
2022-09-06 13:54:28 -07:00
parent 971f109091
commit 04d45ded78
2 changed files with 5 additions and 5 deletions

View File

@@ -16,13 +16,9 @@ figure out interactions with Doom
** Fira Code glyphs in vterm
https://www.reddit.com/r/DoomEmacs/comments/qqqbon/wrong_icons_in_the_vterm/
* Kitty
** Layout shortcuts
https://sw.kovidgoyal.net/kitty/actions/#action-toggle-layout
** Cheatsheet popup shortcuts
*** fzf -> tldr
*** kitty shortcuts
** Easier shortcuts to resize panes
ctrl+shift+arrows
** ssh wrapper
* Shell
** Aliases to auto-deploy templates for python/nix direnv

View File

@@ -4,7 +4,7 @@
enable = true;
settings = {
enabled_layouts = "vertical, tall, grid, stack";
enabled_layouts = "grid, tall, vertical, stack";
background_opacity = "1.0";
macos_option_as_alt = "left";
};
@@ -28,6 +28,10 @@
"ctrl+s>l" = "next_layout";
"ctrl+s>h" = "show_scrollback";
"ctrl+s>1" = "goto_layout grid";
"ctrl+s>2" = "goto_layout tall";
"ctrl+s>3" = "goto_layout vertical";
"ctrl+page_down" = "next_tab";
"ctrl+page_up" = "previous_tab";
"ctrl+shift+page_down" = "move_tab_forward";