Added a new alias, added some consistency dropped old shit
This commit is contained in:
parent
6829b76c1e
commit
139cd027e1
1 changed files with 6 additions and 6 deletions
12
zsh/zshrc
12
zsh/zshrc
|
@ -70,9 +70,6 @@ alias grep="grep --exclude-dir=.git"
|
|||
# jekyll
|
||||
alias jekyll="(sleep 2 && open http://localhost:4000) & jekyll serve --watch"
|
||||
|
||||
# local tunnel
|
||||
alias lt="localtunnel -k ~/.ssh/id_rsa.pub 80"
|
||||
|
||||
# memcached
|
||||
alias mc="telnet localhost 11211"
|
||||
|
||||
|
@ -89,11 +86,14 @@ alias rsync="rsync --compress --progress"
|
|||
# service
|
||||
alias service="sudo service"
|
||||
|
||||
# wc
|
||||
alias count="wc -l"
|
||||
|
||||
# vim (and some other stuff)
|
||||
if [[ `uname` == "Darwin" ]];
|
||||
then
|
||||
alias vim='mvim -v'
|
||||
alias v='mvim -v'
|
||||
alias vim="mvim -v"
|
||||
alias v="mvim -v"
|
||||
alias vd="mvimdiff -v"
|
||||
alias vo="mvim -v -O"
|
||||
|
||||
|
@ -104,7 +104,7 @@ then
|
|||
export LSCOLORS=Exfxcxdxbxegedabagacad
|
||||
|
||||
# Tell grep to highlight matches
|
||||
export GREP_OPTIONS='--color=auto'
|
||||
export GREP_OPTIONS="--color=auto"
|
||||
|
||||
export PATH=/usr/local/bin:/usr/local/sbin:$PATH
|
||||
export EDITOR="mvim -v"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue