diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-12-17 22:30:28 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2024-12-17 22:30:28 +0100 |
| commit | 0d2ca74a48ace511de37ac3540b2b11ff57b8a2f (patch) | |
| tree | e99407c07317cd732fa8071cba3cdeef01de8fa6 /config | |
| parent | c0e6454bec0709fcf1e7067b7ba3700e2d5e12b8 (diff) | |
Update kitty config
Diffstat (limited to 'config')
| -rw-r--r-- | config/kitty/kitty.conf | 43 |
1 files changed, 34 insertions, 9 deletions
diff --git a/config/kitty/kitty.conf b/config/kitty/kitty.conf index 9f39c2b..bdce07f 100644 --- a/config/kitty/kitty.conf +++ b/config/kitty/kitty.conf @@ -1,21 +1,20 @@ # Font -font_family InputMonoCondensed Nerd Font Thin -bold_font InputMonoCondensed Nerd Font Medium -italic_font InputMonoCondensedIta Nerd Font Thin -bold_italic_font InputMonoCondensedIta Nerd Font Medium +font_family InputMonoCondensed-Thin +bold_font InputMonoCondensed-Medium +italic_font InputMonoCondensed-ThinItalic +bold_italic_font InputMonoCondensed-MediumItalic font_size 14.0 # Cursor -cursor #eeeeee +cursor none cursor_text_color #3e3937 cursor_shape block +cursor_trail 1 # Mouse mouse_hide_wait 0 - -macos_titlebar_color background -background_opacity 1.0 +background_opacity 0.95 # Color Scheme - Ruben Tranquil foreground #ffffff @@ -134,8 +133,34 @@ color15 #ffffff # color15 #ffffff # window -hide_window_decorations no +hide_window_decorations titlebar-only +window_margin_width 10 5 5 tab_bar_style separator +tab_bar_margin_width 5.0 # keyboard macos_option_as_alt left + +# Splits and Navigation, Tmux Style +map ctrl+a>- launch --location=hsplit +map ctrl+a>| launch --location=vsplit +# map f7 layout_action rotate + +# Switch focus to the neighboring window in the indicated direction +map ctrl+a>h neighboring_window left +map ctrl+a>l neighboring_window right +map ctrl+a>k neighboring_window up +map ctrl+a>j neighboring_window down + +# Move the active window in the indicated direction +map shift+up move_window up +map shift+left move_window left +map shift+right move_window right +map shift+down move_window down + +# Move the active window to the indicated screen edge +map ctrl+shift+up layout_action move_to_screen_edge top +map ctrl+shift+left layout_action move_to_screen_edge left +map ctrl+shift+right layout_action move_to_screen_edge right +map ctrl+shift+down layout_action move_to_screen_edge bottom + |