Skip to content

Commit

Permalink
Add some zsh aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
romaintb committed Sep 8, 2016
1 parent c3cacce commit 3f9199d
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .zshrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,20 @@ ZSH_THEME="avit"
plugins=(git archlinux bundler docker gem sudo tmux themes)
source $ZSH/oh-my-zsh.sh

EDITOR=vim
TERM=xterm-256color

export EDITOR=vim
export TERM=xterm-256color
export PATH="/usr/local/bin:$HOME/bin:$HOME/.rbenv/bin:$PATH"
export NODE_ENV="dev"

export NVM_DIR="/home/romain/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
#export NODE_ENV="dev"

[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
eval "$(rbenv init -)"

# bug with irssi where only half of the screen scrolls and suck bugs ...
alias irssi='TERM=screen irssi'

alias rails="bundle exec rails"
alias rake="bundle exec rake"
alias gfp="git fetch -p --all"
alias gpr="git pull --rebase"
alias grpe="grep"

0 comments on commit 3f9199d

Please sign in to comment.