[UPDATE][SHELL] Remove '~/.local/bin' from PATH

This commit is contained in:
Bruno BELANYI 2020-02-17 21:59:43 +01:00
parent 5fc613a7c0
commit 32f464168a
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ if { [ -n "$BASH_VERSION" ] && shopt -q login_shell; } ||
export PATH="$HOME/.cargo/bin:$PATH"
# User-local bin directories
export PATH="$HOME/bin:$HOME/.local/bin:$PATH"
export PATH="$HOME/bin:$PATH"
# Color ls output depending on filetype with dircolors
[ -e "/etc/DIR_COLORS" ] && DIR_COLORS="/etc/DIR_COLORS"