mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-05 01:46:46 +01:00
Moving all zsh config options into a lib/ subdirectory to make way for some upcoming changes to directory structure and configuration options
This commit is contained in:
parent
b3defd3767
commit
8dd06e3c73
11 changed files with 1 additions and 1 deletions
43
lib/aliases.zsh
Normal file
43
lib/aliases.zsh
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
alias pu='pushd'
|
||||
alias po='popd'
|
||||
|
||||
alias sc='ruby script/console'
|
||||
alias sd='ruby script/server --debugger'
|
||||
alias ss='thin --stats "/thin/stats" start'
|
||||
|
||||
alias mr='mate CHANGELOG app config db lib public script spec test'
|
||||
alias .='pwd'
|
||||
alias ...='cd ../..'
|
||||
|
||||
alias _='sudo'
|
||||
|
||||
#alias g='grep -in'
|
||||
|
||||
alias g='git'
|
||||
alias gst='git status'
|
||||
alias gl='git pull'
|
||||
alias gp='git push'
|
||||
alias gd='git diff | mate'
|
||||
alias gc='git commit -v'
|
||||
alias gca='git commit -v -a'
|
||||
alias gb='git branch'
|
||||
alias gba='git branch -a'
|
||||
|
||||
alias history='fc -l 1'
|
||||
|
||||
alias ls='ls -F'
|
||||
alias ll='ls -al'
|
||||
|
||||
alias sgem='sudo gem'
|
||||
|
||||
alias rfind='find . -name *.rb | xargs grep -n'
|
||||
|
||||
alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk'
|
||||
|
||||
alias et='mate . &'
|
||||
alias ett='mate app config lib db public spec test Rakefile Capfile Todo &'
|
||||
alias etp='mate app config lib db public spec test vendor/plugins vendor/gems Rakefile Capfile Todo &'
|
||||
alias etts='mate app config lib db public script spec test vendor/plugins vendor/gems Rakefile Capfile Todo &'
|
||||
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue