From 01dd50f524925c24e185f41ebdd544ffaedcaa1f Mon Sep 17 00:00:00 2001 From: Marco Thomas Date: Tue, 18 Aug 2026 11:06:34 +0200 Subject: [PATCH] shell: use current shell in tmux --- files/kitty/.config/kitty/kitty.conf | 4 +--- files/tmux/.tmux.conf | 6 ++++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/files/kitty/.config/kitty/kitty.conf b/files/kitty/.config/kitty/kitty.conf index 426a2fd..995b5ab 100644 --- a/files/kitty/.config/kitty/kitty.conf +++ b/files/kitty/.config/kitty/kitty.conf @@ -9,8 +9,6 @@ clipboard_control write-clipboard write-primary no-append include current-theme.conf font_family Iosevka Nerd Font -# italic_font BlexMono Nerd Font Mono -# bold_font BlexMono Nerd Font Mono font_size 12 @@ -43,7 +41,7 @@ tab_title_template "{fmt.fg.red}{bell_symbol}{activity_symbol}{fmt.fg.tab}{title ### Keyboard -map ctrl+shift+t launch --cwd=current --type=tab +map ctrl+shift+t launch --cwd=current --type=tab zsh map alt+shift+1 goto_tab 1 map alt+shift+2 goto_tab 2 diff --git a/files/tmux/.tmux.conf b/files/tmux/.tmux.conf index 6486588..4022926 100644 --- a/files/tmux/.tmux.conf +++ b/files/tmux/.tmux.conf @@ -1,9 +1,11 @@ ### Terminal -# set default terminal +set-option -g default-shell "$SHELL" set -g default-terminal "tmux-256color" + # enable true color terminal set -ga terminal-overrides ",*256col*:Tc,alacritty:Tc" + # enable hyperlinks set -as terminal-features ",*:hyperlinks" @@ -23,7 +25,7 @@ bind-key -n M-k select-pane -U bind-key -n M-l select-pane -R # pane zoom -bind-key -n M-f resize-pane -Z +bind-key -n M-z resize-pane -Z # window rename bind-key -n M-, command-prompt -p "Rename tab:" "rename-window '%%'"