-
-
Save qodirovshohijahon/b326c2be8b64d32c2f3194793cdaa18e to your computer and use it in GitHub Desktop.
My .zshrc file
This file contains 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
# Path to your oh-my-zsh configuration. | |
export ZSH=$HOME/.oh-my-zsh | |
# Set name of the theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
# Optionally, if you set this to "random", it'll load a random theme each | |
# time that oh-my-zsh is loaded. | |
#export ZSH_THEME="robbyrussell" | |
export ZSH_THEME="zanshin" | |
# Set to this to use case-sensitive completion | |
# export CASE_SENSITIVE="true" | |
# Comment this out to disable weekly auto-update checks | |
# export DISABLE_AUTO_UPDATE="true" | |
# Uncomment following line if you want to disable colors in ls | |
# export DISABLE_LS_COLORS="true" | |
# Uncomment following line if you want to disable autosetting terminal title. | |
# export DISABLE_AUTO_TITLE="true" | |
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*) | |
# Example format: plugins=(rails git textmate ruby lighthouse) | |
plugins=(git textmate osx ruby) | |
source $ZSH/oh-my-zsh.sh | |
# Customize to your needs... | |
# added my path 2011.7.19 | |
export PATH=/usr/local/bin:/usr/local/apache-maven-2.2.1/bin:/usr/local/maven-1.1/bin:/Developer/android/android-sdk-mac_x86/tools:/usr/local/mysql/bin:/usr/local/sbin:~/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/Users/mark/.rvm/bin | |
# added RVM stuff | |
# load RVM | |
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" | |
# copied from .bash_aliases 2001.07.19 | |
# ------------------------------------------------------------------- | |
# some alias settings, just for fun | |
# ------------------------------------------------------------------- | |
#alias 'today=calendar -A 0 -f ~/calendar/calendar.mark | sort' | |
alias 'today=calendar -A 0 -f /usr/share/calendar/calendar.mark | sort' | |
alias 'dus=du -sckx * | sort -nr' | |
alias 'adventure=emacs -batch -l dunnet' | |
alias 'mailsize=du -hs ~/Library/mail' | |
alias 'bk=cd $OLDPWD' | |
alias 'ttop=top -ocpu -R -F -s 2 -n30' | |
alias lh='ls -a | egrep "^\."' | |
# ------------------------------------------------------------------- | |
# make some commands (potentially) less destructive | |
# ------------------------------------------------------------------- | |
alias 'rm=rm -i' | |
# ------------------------------------------------------------------- | |
# Jboss | |
# ------------------------------------------------------------------- | |
alias 'startjboss=/usr/local/jboss-4.0.5.GA/bin/run.sh &' | |
alias 'stopjboss=/usr/local/jboss-4.0.5.GA/bin/shutdown.sh --shutdown' | |
# ------------------------------------------------------------------- | |
# Mercurial (hg) | |
# ------------------------------------------------------------------- | |
alias 'h=hg status' | |
alias 'hc=hg commit' | |
alias 'push=hg push' | |
alias 'pull=hg pull' | |
alias 'clone=hg clone' | |
# ------------------------------------------------------------------- | |
# Git | |
# ------------------------------------------------------------------- | |
alias ga='git add' | |
alias gp='git push' | |
alias gl='git log' | |
alias gs='git status' | |
alias gd='git diff' | |
alias gm='git commit -m' | |
alias gma='git commit -am' | |
alias gb='git branch' | |
alias gc='git checkout' | |
alias gra='git remote add' | |
alias grr='git remote rm' | |
alias gpu='git pull' | |
alias gcl='git clone' | |
alias gta='git tag -a -m' | |
alias gf='git reflog' | |
# leverage an alias from the ~/.gitconfig | |
alias gh='git hist' | |
# ------------------------------------------------------------------- | |
# Oddball stuff | |
# ------------------------------------------------------------------- | |
alias 'sloc=/usr/local/sloccount/bin/sloccount' | |
# necessary to make rake work inside of zsh | |
alias rake="noglob rake" | |
# sort files in current directory by the number of words they contain | |
alias 'wordy=wc -w * | sort | tail -n10' | |
alias 'filecount=ls -aRF | wc -l' | |
# ------------------------------------------------------------------- | |
# Functions ported directly from .bashrc | |
# ------------------------------------------------------------------- | |
# turn hidden files on/off in Finder | |
function hiddenOn() { defaults write com.apple.Finder AppleShowAllFiles YES ; } | |
function hiddenOff() { defaults write com.apple.Finder AppleShowAllFiles NO ; } | |
# postgres functions | |
function psqlstart() { /usr/local/pgsql/bin/pg_ctl -D /usr/local/pgsql/data -l logfile start ; } | |
function psqlstop() { /usr/local/pgsql/bin/pg_ctl stop ; } | |
# view man pages in Preview | |
function pman() { ps=`mktemp -t manpageXXXX`.ps ; man -t $@ > "$ps" ; open "$ps" ; } | |
# apache tomcat functions | |
function tomcatup() { /usr/local/tomcat/bin/startup.sh ; } | |
function tomcatdown() { /usr/local/tomcat/bin/shutdown.sh ; } | |
# nice mount (http://catonmat.net/blog/another-ten-one-liners-from-commandlingfu-explained) | |
# displays mounted drive information in a nicely formatted manner | |
function nicemount() { (echo "DEVICE PATH TYPE FLAGS" && mount | awk '$2="";1') | column -t ; } | |
# myIP address | |
function myip() { | |
ifconfig lo0 | grep 'inet ' | sed -e 's/:/ /' | awk '{print "lo0 : " $2}' | |
ifconfig en0 | grep 'inet ' | sed -e 's/:/ /' | awk '{print "en0 (IPv4): " $2 " " $3 " " $4 " " $5 " " $6}' | |
ifconfig en0 | grep 'inet6 ' | sed -e 's/ / /' | awk '{print "en0 (IPv6): " $2 " " $3 " " $4 " " $5 " " $6}' | |
ifconfig en1 | grep 'inet ' | sed -e 's/:/ /' | awk '{print "en1 (IPv4): " $2 " " $3 " " $4 " " $5 " " $6}' | |
ifconfig en1 | grep 'inet6 ' | sed -e 's/ / /' | awk '{print "en1 (IPv6): " $2 " " $3 " " $4 " " $5 " " $6}' | |
} | |
# | |
## new functions | |
# | |
s() { pwd > ~/.save_dir ; } | |
i() { cd "$(cat ~/.save_dir)" ; } | |
# | |
# finis | |
# mhn 2011.7.19 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment