You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			18 lines
		
	
	
		
			337 B
		
	
	
	
		
			Bash
		
	
			
		
		
	
	
			18 lines
		
	
	
		
			337 B
		
	
	
	
		
			Bash
		
	
HISTFILE=~/.histfile
 | 
						|
HISTSIZE=1000
 | 
						|
SAVEHIST=1000
 | 
						|
bindkey -v
 | 
						|
 | 
						|
zstyle :compinstall filename '/home/dustinswan/.zshrc'
 | 
						|
 | 
						|
autoload -Uz compinit && compinit
 | 
						|
# zstyle ':completion:*' menu select
 | 
						|
# setopt completealiases
 | 
						|
 | 
						|
alias vi=vim
 | 
						|
# alias grep='grep --color=auto'
 | 
						|
# alias ls='ls --color=auto'
 | 
						|
 | 
						|
export TERM="xterm-256color"
 | 
						|
export EDITOR=vim
 |