diff options
| author | Thomas Schneider <thosch97@gmail.com> | 2015-02-21 15:04:56 +0100 |
|---|---|---|
| committer | Thomas Schneider <thosch97@gmail.com> | 2015-02-21 15:04:56 +0100 |
| commit | 3f8686b1249d33d8f8ae6d03802fbbfd9da019d3 (patch) | |
| tree | 1fe53d2be7c8e1240d4c304f58979ad25c7d335f /dot.zshrc.local | |
| parent | 03c3e7d51e768f1e2dcf9893a72a07bd195a5f59 (diff) | |
zshrc.local: sanitize $PATH and add ~/.local/bin
Signed-off-by: Thomas Schneider <thosch97@gmail.com>
Diffstat (limited to 'dot.zshrc.local')
| -rw-r--r-- | dot.zshrc.local | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dot.zshrc.local b/dot.zshrc.local index 65aae4c..85f65dd 100644 --- a/dot.zshrc.local +++ b/dot.zshrc.local @@ -6,7 +6,9 @@ zstyle :prompt:grml:left:items:percent pre ' alias g=git alias hl="highlight -O ansi" #export PATH="${PATH}/usr/sbin:/usr/local/sbin:/sbin" -export PATH="${HOME}/.cabal/bin:${PATH}" +path=( $HOME/.cabal/bin(/N) $path ) +path=( $HOME/.local/bin(/N) $path ) +typeset -U path export SVN_SSH="ssh -i /home/qsuscs/.ssh/id_rsa_subversion" ssh-add -l function countdown { |
