Stops zsh from trying to set the terminal color scheme over ssh
This commit is contained in:
parent
ad52b71067
commit
c191d2ddbc
1 changed files with 4 additions and 2 deletions
|
@ -87,8 +87,10 @@ source $ZSH/oh-my-zsh.sh
|
|||
|
||||
source ~/.dotfiles/shells/zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
|
||||
|
||||
if [ -L $HOME/.dotfiles/shells/zsh/current-color-scheme ]; then
|
||||
if [ ! -n "$SSH_CLIENT" ] && [ ! -n "$SSH_TTY" ]; then
|
||||
if [ -L $HOME/.dotfiles/shells/zsh/current-color-scheme ]; then
|
||||
source $HOME/.dotfiles/shells/zsh/current-color-scheme
|
||||
fi
|
||||
fi
|
||||
|
||||
TRAPWINCH(){
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue