24 lines
591 B
Bash
24 lines
591 B
Bash
# .env Environment Variables and Settings
|
|
# Adrian Abeyta <adrian@adrianabeyta.com>
|
|
|
|
# Golang bin
|
|
export PATH=/usr/local/go/bin:$PATH
|
|
|
|
# Node.js
|
|
export NVM_DIR="$HOME/.nvm"
|
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
|
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
|
|
|
# use bat(cat) for manpages
|
|
export MANPAGER="batcat -plman"
|
|
|
|
# don't put duplicate lines or lines starting with space in the history.
|
|
HISTCONTROL=ignoreboth
|
|
|
|
# history length/size
|
|
HISTSIZE=1000
|
|
HISTFILESIZE=2000
|
|
|
|
# enable fun scripts
|
|
#HAVE_FUN=true
|