LoginSignup
1
0

More than 5 years have passed since last update.

おいらのbash

Posted at
HISTSIZE=50000

alias ll='ls -la'
alias vi='vim'
alias dock='docker-compose'
alias ctags="`brew --prefix`/bin/ctags"
alias launch-teachme="docker-sync start && docker-compose up"
source /usr/local/etc/bash_completion.d/git-prompt.sh
source /usr/local/etc/bash_completion.d/git-completion.bash
java -jar $HOME/lib/java/plantuml.jar -tpng $@

GIT_PS1_SHOWDIRTYSTATE=true
export PS1='\h\[\033[00m\]:\W\[\033[31m\]$(__git_ps1 [%s])\[\033[00m\]\$ '

if [ -f ~/.nodebrew/completions/bash/nodebrew-completion ]; then
    . ~/.nodebrew/completions/bash/nodebrew-completion
fi
export PATH=$HOME/.nodebrew/current/bin:$PATH
if [ -f ~/.bashrc ] ; then
. ~/.bashrc
fi

# npm
export PATH="/usr/local/share/npm/bin:$PATH"
export PATH="$HOME/.rbenv/bin:$PATH"
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0