mirror of
https://github.com/tomru/DotfilesOld.git
synced 2026-03-03 14:37:25 +01:00
34 lines
657 B
Bash
34 lines
657 B
Bash
########################
|
|
# Source Things
|
|
########################
|
|
|
|
# dircolors
|
|
[ -s ~/.dircolors ] && . ~/.dircolors
|
|
|
|
# extend path
|
|
export PATH=$HOME/local/bin:$PATH
|
|
|
|
# nvm
|
|
export NVM_DIR="$HOME/.nvm"
|
|
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" && nvm use > /dev/null
|
|
|
|
# Base16 Shell
|
|
BASE16_SCHEME="solarized"
|
|
BASE16_SHELL="$HOME/.base16-shell/base16-$BASE16_SCHEME.dark.sh"
|
|
[[ -s $BASE16_SHELL ]] && . $BASE16_SHELL
|
|
|
|
########################
|
|
# Dist related settings
|
|
########################
|
|
DIST=$(lsb_release -si)
|
|
case DIST in
|
|
Arch )
|
|
;;
|
|
esac
|
|
|
|
########################
|
|
# Aliases
|
|
########################
|
|
alias g=git
|
|
rl () { $(npm bin)/$* }
|