| 1234567891011121314151617181920212223242526272829303132 |
- # Lines configured by zsh-newuser-install
- HISTFILE=~/.histfile
- HISTSIZE=1000
- SAVEHIST=1000
- setopt incappendhistory nomatch correct_all
- unsetopt beep
- bindkey -v
- zstyle :compinstall filename '/Users/drew/.zshrc'
- autoload -Uz compinit
- compinit
- export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting
- autoload -U colors && colors
- # Have to reset color to cyan after the bold tags for some reason.
- PROMPT="%{$fg[cyan]%}[%n@%M %B%1~%b%{$fg[cyan]%}]%# %{$reset_color%}"
- alias ll='ls -alF'
- alias la='ls -A'
- alias l='ls -CF'
- alias ls='ls -G'
- export EDITOR="mvim"
- alias vim="mvim"
- # Set Home, End, Del, PgUp, PgDown keys to actually do something.
- bindkey '^[OH' beginning-of-line
- bindkey '^[OF' end-of-line
- bindkey '^[[3~' delete-char
- bindkey '^[[5~' beginning-of-buffer-or-history
- bindkey '^[[6~' end-of-buffer-or-history
|