changed path for basher
This commit is contained in:
parent
9a9c534bc4
commit
eb126cb72e
1 changed files with 5 additions and 1 deletions
|
@ -3,6 +3,9 @@ dotfls="${HOME}/dotfiles"
|
|||
dotlib="${dotfls}/lib"
|
||||
dotcfg="${dotfls}/cfg"
|
||||
brewpr="$(/home/linuxbrew/.linuxbrew/bin/brew --prefix)"
|
||||
BASHER_SHELL=zsh
|
||||
BASHER_ROOT=/home/eeleater/.basher
|
||||
|
||||
|
||||
# Path
|
||||
path=(${brewpr}/sbin ${brewpr}/bin) # Homebrew
|
||||
|
@ -11,7 +14,7 @@ path+=(/usr/sbin /usr/bin) # /usr/bin
|
|||
if type apt-get &>/dev/null; then path+=(/sbin /bin); fi # /bin only on Debian
|
||||
|
||||
path+=(${dotfls}/bin) # Bin in Dotfiles
|
||||
path+=(${dotlib}/basher/bin) # Basher
|
||||
path+=(${dotlib}/basher/bin ${BASHER_ROOT}/cellar/bin) # Basher
|
||||
path+=(${HOME}/.gem/ruby/2.4.0/bin) # Ruby Gems
|
||||
path+=(/usr/lib/jvm/default/bin) # Java
|
||||
path+=(/opt/android-sdk/build-tools/26.0.1) # Android SDK
|
||||
|
@ -29,6 +32,7 @@ EDITOR='nano'
|
|||
fpath+=(${dotlib}/completions/src)
|
||||
fpath+=(${brewpr}/share/zsh/site-functions)
|
||||
fpath+=(${dotlib}/local)
|
||||
fpath+=(${BASHER_ROOT}/cellar/completions/zsh)
|
||||
|
||||
# Actually export
|
||||
export dotlib dotcfg brewpr PATH MANPATH INFOPATH EDITOR
|
||||
|
|
Loading…
Add table
Reference in a new issue