26 lines
		
	
	
		
			513 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			513 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Copyright (C) 2004-2011  Gabriel Ebner
 | 
						|
 | 
						|
. ~/.commonshrc
 | 
						|
 | 
						|
# oh-my-zsh
 | 
						|
export ZSH=$HOME/etc/oh-my-zsh
 | 
						|
 | 
						|
export ZSH_THEME=gebner
 | 
						|
export DISABLE_AUTO_UPDATE=true
 | 
						|
 | 
						|
plugins=(git ant deb debian gem git git-flow github perl rails ruby)
 | 
						|
 | 
						|
source $ZSH/oh-my-zsh.sh
 | 
						|
 | 
						|
setopt nocorrect_all
 | 
						|
alias ll=ll
 | 
						|
alias l='ls -lha'
 | 
						|
alias ar=ar
 | 
						|
 | 
						|
# History
 | 
						|
setopt APPEND_HISTORY SHARE_HISTORY EXTENDED_HISTORY INC_APPEND_HISTORY \
 | 
						|
  HIST_IGNORE_ALL_DUPS HIST_FIND_NO_DUPS HIST_IGNORE_SPACE
 | 
						|
HISTSIZE=100000
 | 
						|
SAVEHIST=100000
 | 
						|
HISTFILE=~/.zhist
 |