diff options
author | David Phillips <david@yeah.nah.nz> | 2019-03-03 15:25:29 +1300 |
---|---|---|
committer | David Phillips <david@yeah.nah.nz> | 2019-03-03 15:25:29 +1300 |
commit | 65861eea24a6c5bea2401fba449af1b0f97db275 (patch) | |
tree | b30a80d60bd9ed1ddbe8f65bdaa3d8c0c2bcc03a | |
parent | b38fe4605b5d0af1b523e8649a5228fdcb0d7710 (diff) | |
download | dotfiles-65861eea24a6c5bea2401fba449af1b0f97db275.tar.xz |
environment: Add sbase to PATH
-rw-r--r-- | aliases | 1 | ||||
-rw-r--r-- | environment | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -18,6 +18,7 @@ f() { noglob bc -l <<< "scale=1;($@-32)*5/9" } +alias pacman="PATH=$ORIG_PATH pacman" alias sudo="sudo " alias monut=mount alias pamcan=pacman diff --git a/environment b/environment index 44c9e67..ff17c0a 100644 --- a/environment +++ b/environment @@ -2,6 +2,8 @@ export GPG_TTY=$(tty) export EDITOR=/usr/bin/vim +export ORIG_PATH="$PATH" +export PATH="/opt/sbase/bin/:$PATH" if hash clang 2>/dev/null; then export CC=clang |