Skip to content

Commit

Permalink
remove docker alias
Browse files Browse the repository at this point in the history
  • Loading branch information
pad92 committed Oct 10, 2018
1 parent 659a229 commit 1aa0811
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 16 deletions.
10 changes: 7 additions & 3 deletions .zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,20 @@ export TERM="xterm-256color"

export PATH="${PATH}:/var/lib/snapd/snap/bin:~/.cabal/bin:~/.xmonad/bin"

if [ -d ~/bin ]; then
export PATH="${PATH}:~/bin"
for MYBIN in $(ls -d ~/bin/*/); do
if [ -d ~/.bin ]; then
export PATH="${PATH}:~/.bin"
for MYBIN in $(ls -d ~/.bin/*/); do
if [ -d "${MYBIN}" ]; then
export PATH="${PATH}:${MYBIN}"
fi
done
rehash
fi

if [ -d ~/.local/bin ]; then
export PATH="${PATH}:~/.local/bin"
fi

ZSH_THEME="pad"

plugins=(command-not-found extract github httpie rsync)
Expand Down
13 changes: 0 additions & 13 deletions zsh/init/docker.zsh

This file was deleted.

0 comments on commit 1aa0811

Please sign in to comment.