From 08d9567bdf6952958213eb6ba26ef020c9cbdea5 Mon Sep 17 00:00:00 2001 From: David Tomaschik Date: Mon, 11 Jun 2018 21:29:50 -0700 Subject: [PATCH] Update zsh. --- dotfiles/zpreztorc | 2 +- dotfiles/zshrc | 9 --------- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/dotfiles/zpreztorc b/dotfiles/zpreztorc index 9558803..5d928ad 100644 --- a/dotfiles/zpreztorc +++ b/dotfiles/zpreztorc @@ -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' diff --git a/dotfiles/zshrc b/dotfiles/zshrc index 186171d..b6b71d5 100755 --- a/dotfiles/zshrc +++ b/dotfiles/zshrc @@ -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" -}