changed path for homebrew
This commit is contained in:
parent
0aee2d0243
commit
1c113fde50
3 changed files with 15 additions and 6 deletions
|
@ -5,12 +5,19 @@ dotcfg="${dotfls}/cfg"
|
||||||
lbrew="/home/linuxbrew/.linuxbrew"
|
lbrew="/home/linuxbrew/.linuxbrew"
|
||||||
|
|
||||||
# Paths
|
# Paths
|
||||||
|
path=(${lbrew}/bin)
|
||||||
|
path+=(${lbrew}/sbin)
|
||||||
|
path+=(/usr/local/sbin)
|
||||||
|
path+=(/usr/local/bin)
|
||||||
|
path+=(/usr/sbin)
|
||||||
|
path+=(/usr/bin)
|
||||||
|
path+=(/sbin)
|
||||||
|
path+=(/bin)
|
||||||
|
path+=(/usr/lib/jvm/default/bin)
|
||||||
path+=(${dotfls}/bin)
|
path+=(${dotfls}/bin)
|
||||||
path+=(${HOME}/.gem/ruby/2.4.0/bin)
|
path+=(${HOME}/.gem/ruby/2.4.0/bin)
|
||||||
path+=(${HOME}/basher/bin)
|
path+=(${HOME}/basher/bin)
|
||||||
path+=(/opt/android-sdk/build-tools/26.0.1)
|
path+=(/opt/android-sdk/build-tools/26.0.1)
|
||||||
path+=(${lbrew}/bin)
|
|
||||||
path+=(${lbrew}/sbin)
|
|
||||||
manpath+=(${lbrew}/share/man)
|
manpath+=(${lbrew}/share/man)
|
||||||
infopath+=(${lbrew}/share/info)
|
infopath+=(${lbrew}/share/info)
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,4 @@
|
||||||
[[ $- == *i* ]] && source "/home/linuxbrew/.linuxbrew/opt/fzf/shell/completion.zsh" 2> /dev/null
|
[[ $- == *i* && -f "/usr/share/fzf/completion.zsh" ]] && source "/usr/share/fzf/completion.zsh" 2> /dev/null
|
||||||
source "/home/linuxbrew/.linuxbrew/opt/fzf/shell/key-bindings.zsh"
|
[[ -f "/usr/share/fzf/key-bindings.zsh" ]] && source "/usr/share/fzf/key-bindings.zsh"
|
||||||
|
[[ $- == *i* && -f "/home/linuxbrew/.linuxbrew/opt/fzf/shell/completion.zsh" ]] && source "/home/linuxbrew/.linuxbrew/opt/fzf/shell/completion.zsh" 2> /dev/null
|
||||||
|
[[ -f "/home/linuxbrew/.linuxbrew/opt/fzf/shell/key-bindings.zsh" ]] && source "/home/linuxbrew/.linuxbrew/opt/fzf/shell/key-bindings.zsh"
|
||||||
|
|
|
@ -20,9 +20,9 @@ then
|
||||||
|
|
||||||
if [[ `tput colors` == "256" ]]
|
if [[ `tput colors` == "256" ]]
|
||||||
then
|
then
|
||||||
ZSH_TMUX_TERM=$ZSH_TMUX_FIXTERM_WITH_256COLOR
|
export ZSH_TMUX_TERM=$ZSH_TMUX_FIXTERM_WITH_256COLOR
|
||||||
else
|
else
|
||||||
ZSH_TMUX_TERM=$ZSH_TMUX_FIXTERM_WITHOUT_256COLOR
|
export ZSH_TMUX_TERM=$ZSH_TMUX_FIXTERM_WITHOUT_256COLOR
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ "$ZSH_TMUX_ITERM2" == "false" ]] && [[ -f $HOME/.tmux.conf || -h $HOME/.tmux.conf ]]
|
if [[ "$ZSH_TMUX_ITERM2" == "false" ]] && [[ -f $HOME/.tmux.conf || -h $HOME/.tmux.conf ]]
|
||||||
|
|
Loading…
Add table
Reference in a new issue