Launch Tmux in Fish instead of in Kitty

This commit is contained in:
Sravan Balaji
2024-05-12 09:14:59 -04:00
parent 7e3ee5000c
commit 64895ff3f2
3 changed files with 16 additions and 2 deletions

View File

@@ -62,3 +62,8 @@ end
# Starship Prompt
starship init fish | source
if status is-interactive
and not set -q TMUX
tmux new-session
end

View File

@@ -761,7 +761,7 @@ mark3_background #f274bc
#: Advanced {{{
shell tmux
shell fish
#: The shell program to execute. The default value of . means to use
#: whatever shell is set as the default shell for the current user.

View File

@@ -5330,6 +5330,15 @@ fish_pager_color_secondary_completion f8f8f2
fish_pager_color_secondary_description 6272a4
#+END_SRC
**** Start Tmux
#+BEGIN_SRC fish :tangle .config/fish/config.fish
if status is-interactive
and not set -q TMUX
tmux new-session
end
#+END_SRC
** Terminal
*** Kitty
@@ -6136,7 +6145,7 @@ mark3_background #f274bc
#+BEGIN_SRC conf :tangle .config/kitty/kitty.conf
#: Advanced {{{
shell tmux
shell fish
#: The shell program to execute. The default value of . means to use
#: whatever shell is set as the default shell for the current user.