summaryrefslogtreecommitdiff
path: root/zsh/.zshrc
diff options
context:
space:
mode:
Diffstat (limited to 'zsh/.zshrc')
-rw-r--r--zsh/.zshrc9
1 files changed, 8 insertions, 1 deletions
diff --git a/zsh/.zshrc b/zsh/.zshrc
index 1778f49..cbb4caf 100644
--- a/zsh/.zshrc
+++ b/zsh/.zshrc
@@ -82,7 +82,7 @@ export EDITOR=nvim
export SUDO_EDITOR=$EDITOR
export LANG=en_US.UTF-8
export TERM="xterm-256color"
-
+export PATH=$PATH:$HOME/Scripts/bin
#
# Alias
@@ -114,3 +114,10 @@ function gittr {
git push -u $1 HEAD
}
+function goto {
+ $HOME/Scripts/goto $@
+ if [ $? -eq 3 ]; then
+ cd $(</tmp/where)
+ fi
+}
+