Added oh-my-zsh submodule, updated zshrc

master
Dustin Swan 13 years ago
parent 1e142ec8c7
commit 5a3490e27e

3
.gitmodules vendored

@ -64,3 +64,6 @@
[submodule "vim/bundle/gundo"] [submodule "vim/bundle/gundo"]
path = vim/bundle/gundo path = vim/bundle/gundo
url = git://github.com/sjl/gundo.vim url = git://github.com/sjl/gundo.vim
[submodule "oh-my-zsh"]
path = oh-my-zsh
url = git://github.com/robbyrussell/oh-my-zsh

@ -0,0 +1 @@
Subproject commit 757fa3314d1c041ab715dbda838f3e9b2ff9ce17

40
zshrc

@ -1,18 +1,34 @@
HISTFILE=~/.histfile # Path to your oh-my-zsh configuration.
HISTSIZE=1000 ZSH=$HOME/dotfiles/oh-my-zsh
SAVEHIST=1000
bindkey -v
zstyle :compinstall filename '/home/dustinswan/.zshrc' # 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.
ZSH_THEME="robbyrussell"
autoload -Uz compinit && compinit # Set to this to use case-sensitive completion
# zstyle ':completion:*' menu select # CASE_SENSITIVE="true"
# setopt completealiases
alias vi=vim # Comment this out to disable weekly auto-update checks
# alias grep='grep --color=auto' # DISABLE_AUTO_UPDATE="true"
# alias ls='ls --color=auto'
# Uncomment following line if you want to disable colors in ls
# DISABLE_LS_COLORS="true"
# Uncomment following line if you want to disable autosetting terminal title.
# DISABLE_AUTO_TITLE="true"
# Uncomment following line if you want red dots to be displayed while waiting for completion
COMPLETION_WAITING_DOTS="true"
# export TERM="xterm-256color" # 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 archlinux brew github npm vi-mode node osx)
source $ZSH/oh-my-zsh.sh
# Customize to your needs...
alias vi=vim
export TERM="screen-256color" export TERM="screen-256color"
export EDITOR=vim export EDITOR=vim

Loading…
Cancel
Save