[zsh] only start TMUX if not in a TTY
This commit is contained in:
parent
d13c07e1eb
commit
0cfd63830c
1 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
ZSH_AUTOSUGGEST_STRATEGY=(match_prev_cmd history completion)
|
||||
ZSH_TMUX_AUTOSTART=true
|
||||
|
||||
if [[ ! $(tty) =~ ^/dev/tty[0-9]*$ ]]; then
|
||||
ZSH_TMUX_AUTOSTART=true
|
||||
fi
|
||||
|
||||
zstyle ':fzf-tab:complete:cd:*' fzf-preview 'eza -1 --color=always $realpath'
|
||||
|
|
Loading…
Reference in a new issue