Update zsh.

This commit is contained in:
David Tomaschik
2018-06-11 21:29:50 -07:00
parent a460ee3bb4
commit 08d9567bdf
2 changed files with 1 additions and 10 deletions

View File

@@ -214,7 +214,7 @@ zstyle ':prezto:module:python:virtualenv' initialize 'yes'
zstyle ':prezto:module:tmux:auto-start' local 'no'
# Auto start a session when Zsh is launched in a SSH connection.
zstyle ':prezto:module:tmux:auto-start' remote 'yes'
zstyle ':prezto:module:tmux:auto-start' remote 'no'
# Integrate with iTerm2.
# zstyle ':prezto:module:tmux:iterm' integrate 'yes'

View File

@@ -76,12 +76,3 @@ fi
# Load any local settings
if [ -e $HOME/.zshrc.local ] ; then source $HOME/.zshrc.local ; fi
function start_esp {
if [ ! -d ${HOME}/tools/esp ] ; then
echo "ESP not installed!" >/dev/stderr
return 1
fi
export PATH="${PATH}:${HOME}/tools/esp/xtensa-esp32-elf/bin"
export IDF_PATH="${HOME}/tools/esp/esp-idf"
}