dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 4dbd2944780181069c248fb9fe5e3221021c06f6
parent 1e5ab06c016c7604869592fff026522316591861
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Tue, 10 Sep 2019 09:50:12 +0200

Do not check dirs before including them in PATH

Diffstat:
M.profile | 5+----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/.profile b/.profile @@ -14,10 +14,7 @@ GPG_TTY=$(tty) export GPG_TTY [ -f ~/.locale ] && . ~/.locale [ -f ~/.secret_env_vars ] && . ~/.secret_env_vars - -[ -d /usr/local/bin ] && export PATH=/usr/local/bin:$PATH -[ -d ~/.local/bin ] && export PATH=~/.local/bin:$PATH -[ -d ~/bin ] && export PATH=~/bin:$PATH +export PATH="$HOME/.local/bin:/usr/local/bin:$PATH" NNN_BMS="a:$HOME/articles" NNN_BMS+=";b:$HOME/books"