-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.bash_profile
More file actions
42 lines (33 loc) · 776 Bytes
/
.bash_profile
File metadata and controls
42 lines (33 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#
# .bash_profile
#@author Mike Padgett
#
#@see .inputrc
#@see .bashrc for env variables
#@see .aliases for custom commands
# set irc proxy via one of however many servers
# set bastion proxy if not on trusted network
if [ -f ~/.aliases ]
then
source ~/.aliases
fi
if [ -f ~/.bashrc ]
then
source ~/.bashrc
fi
export NVM_DIR=~/.nvm
#source $(brew --prefix nvm)/nvm.sh
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
export BLOCKSIZE=1k
export PATH=/usr/local/bin:$PATH
export EDITOR=vim
export LSCOLORS=gxfxcxdxbxegedabagacad
#exec ssh-agent $BASH -s 10<&0 << EOF
# ssh-add ~/.ssh/mike &> /dev/null
# exec $BASH <&10-
#EOF
if [[ -s $HOME/.rvm/scripts/rvm ]]; then
source $HOME/.rvm/scripts/rvm;
fi
alias ns="~/Documents/Bin/newSite.sh"
source ~/.profile