Created
December 9, 2016 03:10
-
-
Save Uemmra3/5514a5f8d63b8e155a2aad3f1e1a3e7b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # basic | |
| # alias vi=/Applications/MacVim.app/Contents/MacOS/MacVim | |
| #alias ls='ls -FG' | |
| # for msysgit | |
| alias ls='ls -FG --show-control-chars' | |
| alias l='ls -al' | |
| alias ll='ls -l' | |
| alias lll='ls -lart' | |
| alias s=ls | |
| alias h=history | |
| # confirm | |
| alias rm='rm -i' | |
| alias mv='mv -i' | |
| alias cp='cp -i' | |
| # grep | |
| alias gerp=grep | |
| alias gv='grep -v' | |
| # cd upwards | |
| alias u='cd ../' | |
| alias uu='cd ../../' | |
| alias uuu='cd ../../../' | |
| alias uuu='cd ../../../../' | |
| #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
| #: NOTE: delete these lines below if Error occurs | |
| #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
| #: oretoku (specially for Uemmra3) | |
| # misstype | |
| alias ccd=cd | |
| alias sl=ls | |
| alias ks=ls | |
| alias kls=ls | |
| alias lses=less | |
| #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
| alias va=vagrant | |
| #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
| # for android | |
| export ANDROID_HOME=/opt/local/android-sdk-macosx | |
| export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools | |
| #:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: | |
| # Mac Only | |
| if [`which brew | wc -l` == 1]; then | |
| if [ -f `brew --prefix`/etc/bash_completion ]; then | |
| . `brew --prefix`/etc/bash_completion | |
| fi | |
| #macvim | |
| alias mvi="mvim --remote-tab-silent" | |
| fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment