bashrc
This commit is contained in:
parent
d4a0ab47cf
commit
9029c44157
16
bash/bashrc
Normal file
16
bash/bashrc
Normal file
@ -0,0 +1,16 @@
|
||||
# If not running interactively, don't do anything
|
||||
[[ $- != *i* ]] && return
|
||||
|
||||
source /usr/share/git/completion/git-completion.bash
|
||||
|
||||
ENDCOLOR="\e[m"
|
||||
PS1="\e[36m\h${ENDCOLOR} \e[35m\W${ENDCOLOR} \$> "
|
||||
|
||||
alias ls='ls --color=auto'
|
||||
alias df='df -h'
|
||||
alias du='du -h'
|
||||
|
||||
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
|
||||
export PATH="$PATH;node_modules/.bin"
|
Loading…
Reference in New Issue
Block a user