diff options
-rw-r--r-- | zshenv | 4 | ||||
-rw-r--r-- | zshrc | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/zshenv b/zshenv index 7b988b1..cefa3c7 100644 --- a/zshenv +++ b/zshenv @@ -6,8 +6,6 @@ export PAGER="less" export TZ=America/Los_Angeles export GOPATH="${HOME}/workspace/go" -export PROMPT="%1/ %# " - alias cp="cp -i" alias l="ls" alias la="ls -a" @@ -17,8 +15,6 @@ alias mv="mv -i" alias rm="rm -i" alias add="arc diff --draft" -# export PATH="${GOPATH}/bin:$PATH" - # finally, build the path and source a few files __add_to_path_if_exists() { [ -d "$1" ] && export PATH="$1:$PATH" diff --git a/zshrc b/zshrc index 2add721..ce54d98 100644 --- a/zshrc +++ b/zshrc @@ -21,3 +21,5 @@ zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' 'l: autoload -U select-word-style select-word-style bash + +export PROMPT="%1/ %# " |