diff --git a/TODO.org b/TODO.org index e89923d..feeda9a 100644 --- a/TODO.org +++ b/TODO.org @@ -16,11 +16,11 @@ figure out interactions with Doom ** Fira Code glyphs in vterm https://www.reddit.com/r/DoomEmacs/comments/qqqbon/wrong_icons_in_the_vterm/ * Kitty -** Toggle zoom pane -C-s>z ** 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 diff --git a/nix/modules/kitty/default.nix b/nix/modules/kitty/default.nix index e8a11c5..325ac0f 100644 --- a/nix/modules/kitty/default.nix +++ b/nix/modules/kitty/default.nix @@ -4,7 +4,7 @@ enable = true; settings = { - enabled_layouts = "vertical, tall, grid"; + enabled_layouts = "vertical, tall, grid, stack"; background_opacity = "1.0"; macos_option_as_alt = "left"; }; @@ -23,8 +23,11 @@ "kitty_mod+k" = "neighboring_window up"; "kitty_mod+l" = "neighboring_window right"; + "kitty_mod+z" = "toggle_layout stack"; + "ctrl+s>l" = "next_layout"; "ctrl+s>h" = "show_scrollback"; + "ctrl+page_down" = "next_tab"; "ctrl+page_up" = "previous_tab"; "ctrl+shift+page_down" = "move_tab_forward";