mirror of
https://github.com/shokinn/.files.git
synced 2025-01-19 05:22:25 +00:00
Add .local/bin and .bin to zshenv; remove .bin PATH from zshrc
This commit is contained in:
parent
a0c960eb0c
commit
400081ba9d
|
@ -1,4 +1,18 @@
|
||||||
|
#
|
||||||
|
# {{@@ env['dotdrop_warning'] @@}}
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
# Fix for JetBrains with non-re-parenting window managers
|
# Fix for JetBrains with non-re-parenting window managers
|
||||||
export _JAVA_AWT_WM_NONREPARENTING=1
|
export _JAVA_AWT_WM_NONREPARENTING=1
|
||||||
# Disable Ansible cowsay
|
# Disable Ansible cowsay
|
||||||
export ANSIBLE_NOCOWS=1
|
export ANSIBLE_NOCOWS=1
|
||||||
|
# Include ~/.bin to PATH
|
||||||
|
if [ -d "$HOME/.bin" ] ; then
|
||||||
|
export PATH="$HOME/.bin:$PATH"
|
||||||
|
fi
|
||||||
|
# Includ ~/.local/bin to PATH
|
||||||
|
if [ -d "$HOME/.local/bin" ] ; then
|
||||||
|
export PATH="$HOME/.local/bin:$PATH"
|
||||||
|
fi
|
||||||
|
|
||||||
|
|
|
@ -89,12 +89,6 @@ plugins=(
|
||||||
source $ZSH/oh-my-zsh.sh
|
source $ZSH/oh-my-zsh.sh
|
||||||
|
|
||||||
# User configuration
|
# User configuration
|
||||||
|
|
||||||
if [ -d "$HOME/.bin" ] ; then
|
|
||||||
PATH="$HOME/.bin:$PATH"
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
# export MANPATH="/usr/local/man:$MANPATH"
|
# export MANPATH="/usr/local/man:$MANPATH"
|
||||||
|
|
||||||
# You may need to manually set your language environment
|
# You may need to manually set your language environment
|
||||||
|
|
Loading…
Reference in a new issue