This commit is contained in:
albert 2024-04-30 13:41:19 +09:00
parent e44665aaa8
commit 1a1e87c3e2
No known key found for this signature in database
GPG key ID: 64F6C4EB46C4543A

View file

@ -4,14 +4,14 @@
programs.fish = {
enable = true;
shellInit = ''
interactiveShellInit = ''
set EDITOR vim
ssh-add > /dev/null &> /dev/null
if set -q TMUX
else
if set -q DISABLE_TMUX
else
tmux new-session -A main
tmux attach || exec tmux new-session && exit
end
end
'';