From 366de27d8648811a8d13e50d91f39c1b7dc398ca Mon Sep 17 00:00:00 2001 From: yan Date: Fri, 18 Nov 2011 15:30:16 -0600 Subject: [PATCH] Added vim-colors-solarized submodule --- .gitmodules | 3 +++ .vim/bundle/vim-colors-solarized | 1 + bash_aliases | 7 +++++++ 3 files changed, 11 insertions(+) create mode 160000 .vim/bundle/vim-colors-solarized diff --git a/.gitmodules b/.gitmodules index 38ec86e..4640227 100644 --- a/.gitmodules +++ b/.gitmodules @@ -4,3 +4,6 @@ [submodule "vim/bundle/fugitive"] path = vim/bundle/fugitive url = http://github.com/tpope/vim-fugitive.git +[submodule ".vim/bundle/vim-colors-solarized"] + path = .vim/bundle/vim-colors-solarized + url = https://github.com/altercation/vim-colors-solarized diff --git a/.vim/bundle/vim-colors-solarized b/.vim/bundle/vim-colors-solarized new file mode 160000 index 0000000..528a59f --- /dev/null +++ b/.vim/bundle/vim-colors-solarized @@ -0,0 +1 @@ +Subproject commit 528a59f26d12278698bb946f8fb82a63711eec21 diff --git a/bash_aliases b/bash_aliases index e981683..640e963 100644 --- a/bash_aliases +++ b/bash_aliases @@ -28,6 +28,13 @@ alias bor='. ~/dev/config/bash_options' alias bp='vi ~/.bash_profile' alias br='. ~/.bash_profile' +# vimrc editing +alias ve='vi ~/.vimrc' + +# zsh profile editing +alias ze='vi ~/.zshrc' +alias zr='. ~/.zshrc' + # Git Aliases alias gs='git status' alias gstsh='git stash'