adding bash_profile, bashrc, and git-completion.bash
This commit is contained in:
3
bash_profile.bash
Normal file
3
bash_profile.bash
Normal file
@@ -0,0 +1,3 @@
|
||||
if [ -f ~/.bashrc ]; then
|
||||
source ~/.bashrc
|
||||
fi
|
||||
24
bashrc.bash
Normal file
24
bashrc.bash
Normal file
@@ -0,0 +1,24 @@
|
||||
# aliases
|
||||
alias ll='ls -l'
|
||||
alias ta='tmux attach'
|
||||
alias rmf='rm -rf'
|
||||
|
||||
# custom scripts
|
||||
export MY_BIN=~/bin
|
||||
export PATH=$MY_BIN:$PATH
|
||||
|
||||
export MY_EDITOR="mvim -v";
|
||||
|
||||
# export EDITOR='subl -w'
|
||||
# add ~/.node_libraries to the node path
|
||||
export NODE_PATH=~/.node_libraries
|
||||
|
||||
if [ -f ~/.git-completion.bash ]; then
|
||||
source ~/.git-completion.bash
|
||||
fi
|
||||
|
||||
# export PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ '
|
||||
|
||||
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" # Load RVM function
|
||||
|
||||
export PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ '
|
||||
2419
git-completion.bash
Normal file
2419
git-completion.bash
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user