From 3df051919736ad68ebfdb294551b9357b61aff7c Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 14 Jan 2012 19:46:03 -0500 Subject: Initial commit --- .gitmodules | 24 +++++++++++ .vimrc | 101 ++++++++++++++++++++++++++++++++++++++++++++++ bundle/Vim-Tomorrow-Theme | 1 + bundle/ctrlp.vim | 1 + bundle/nerdcommenter | 1 + bundle/nerdtree | 1 + bundle/vim-buffergator | 1 + bundle/vim-fugitive | 1 + bundle/vim-pasta | 1 + bundle/vim-pathogen | 1 + 10 files changed, 133 insertions(+) create mode 100644 .gitmodules create mode 100644 .vimrc create mode 160000 bundle/Vim-Tomorrow-Theme create mode 160000 bundle/ctrlp.vim create mode 160000 bundle/nerdcommenter create mode 160000 bundle/nerdtree create mode 160000 bundle/vim-buffergator create mode 160000 bundle/vim-fugitive create mode 160000 bundle/vim-pasta create mode 160000 bundle/vim-pathogen diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 00000000..87514d90 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,24 @@ +[submodule "bundle/vim-pathogen"] + path = bundle/vim-pathogen + url = https://github.com/tpope/vim-pathogen.git +[submodule "bundle/ctrlp.vim"] + path = bundle/ctrlp.vim + url = https://github.com/kien/ctrlp.vim.git +[submodule "bundle/Vim-Tomorrow-Theme"] + path = bundle/Vim-Tomorrow-Theme + url = git://github.com/programble/Vim-Tomorrow-Theme.git +[submodule "bundle/vim-pasta"] + path = bundle/vim-pasta + url = https://github.com/sickill/vim-pasta.git +[submodule "bundle/vim-fugitive"] + path = bundle/vim-fugitive + url = https://github.com/tpope/vim-fugitive.git +[submodule "bundle/nerdcommenter"] + path = bundle/nerdcommenter + url = https://github.com/ddollar/nerdcommenter.git +[submodule "bundle/nerdtree"] + path = bundle/nerdtree + url = https://github.com/scrooloose/nerdtree.git +[submodule "bundle/vim-buffergator"] + path = bundle/vim-buffergator + url = https://github.com/jeetsukumaran/vim-buffergator.git diff --git a/.vimrc b/.vimrc new file mode 100644 index 00000000..8d962cc3 --- /dev/null +++ b/.vimrc @@ -0,0 +1,101 @@ +" Load pathogen +runtime bundle/vim-pathogen/autoload/pathogen.vim +call pathogen#infect() + +" Remap leader to , +noremap \ , +let mapleader = "," + +" General +set backspace=indent,eol,start +set hidden +set backup +set history=50 +set ruler +set showcmd +set incsearch +set ignorecase +set smartcase +set autoindent +set smartindent +set nu +set spell +set cc=80 +set title +set shortmess=atI +set visualbell t_vb= +set cursorline +set smarttab +set hlsearch +set list +set listchars=tab:»·,trail:· + +set laststatus=2 " Always show statusline +set statusline=%<%f\ %h%m%r%{fugitive#statusline()}%=%-14.(%l,%c%V%)\ %P + +syntax on +colorscheme Tomorrow-Night + +" Enable mouse in terminals +if has('mouse') + set mouse=a +endif + +" GUI options +set guioptions-=tT " Disable tear-off menus and toolbar +set guifont=Monospace\ 9 +set browsedir=buffer " Open dialog starts in working directory + +" Jump to the last cursor position when opening +autocmd BufReadPost * + \ if line("'\"") > 1 && line("'\"") <= line("$") | + \ exe "normal! g`\"" | + \ endif + +" Default to 2-space indents, 4-character tabs +set expandtab +set shiftwidth=2 +set tabstop=4 +filetype plugin indent on + +" Indentation exceptions +autocmd FileType c setlocal sw=4 +autocmd FileType cpp setlocal sw=4 + +" Better tab-complete when opening +set wildmenu +set wildmode=list:longest +set wildignore=*.o,*.d,*~ + +" Smarter % +runtime macros/matchit.vim + +" Disable visible whitespace in insert mode +autocmd InsertEnter * setlocal nolist +autocmd InsertLeave * setlocal list + +" Custom maps +let g:buffergator_suppress_keymaps=1 + +nnoremap ' ` +nnoremap ` ' + +nmap n :silent :nohlsearch " Clear search highlights +nmap s :set list! " Toggle visible whitespace + +nmap p "+p +nmap P "+P +nmap y "+y +nmap Y "+Y +nmap d "+d +nmap D "+D + +imap " Insert hard tab + +nmap Q gq + +nmap t :NERDTreeToggle +nmap b :BuffergatorToggle + +" Custom commands +command! W :w diff --git a/bundle/Vim-Tomorrow-Theme b/bundle/Vim-Tomorrow-Theme new file mode 160000 index 00000000..ae8edac5 --- /dev/null +++ b/bundle/Vim-Tomorrow-Theme @@ -0,0 +1 @@ +Subproject commit ae8edac57291e3e9ac9dd59e1dda6e961836df28 diff --git a/bundle/ctrlp.vim b/bundle/ctrlp.vim new file mode 160000 index 00000000..420174fc --- /dev/null +++ b/bundle/ctrlp.vim @@ -0,0 +1 @@ +Subproject commit 420174fc537ba986a716964db7af0bd189252944 diff --git a/bundle/nerdcommenter b/bundle/nerdcommenter new file mode 160000 index 00000000..093e6b3f --- /dev/null +++ b/bundle/nerdcommenter @@ -0,0 +1 @@ +Subproject commit 093e6b3f765b728c129a4271f1f34bb70e671f08 diff --git a/bundle/nerdtree b/bundle/nerdtree new file mode 160000 index 00000000..eced5f98 --- /dev/null +++ b/bundle/nerdtree @@ -0,0 +1 @@ +Subproject commit eced5f98a0724cd6498b70024b3edec1e7b29b2e diff --git a/bundle/vim-buffergator b/bundle/vim-buffergator new file mode 160000 index 00000000..c6f56eac --- /dev/null +++ b/bundle/vim-buffergator @@ -0,0 +1 @@ +Subproject commit c6f56eac74c9ae9301b640e9f5bb0389a8ffd4fa diff --git a/bundle/vim-fugitive b/bundle/vim-fugitive new file mode 160000 index 00000000..b4b75ef6 --- /dev/null +++ b/bundle/vim-fugitive @@ -0,0 +1 @@ +Subproject commit b4b75ef682da3e946c648d3634ade39d0af49aba diff --git a/bundle/vim-pasta b/bundle/vim-pasta new file mode 160000 index 00000000..ada8a5cf --- /dev/null +++ b/bundle/vim-pasta @@ -0,0 +1 @@ +Subproject commit ada8a5cf9a826db57cf98bde808384d351fd2897 diff --git a/bundle/vim-pathogen b/bundle/vim-pathogen new file mode 160000 index 00000000..ab64b4dd --- /dev/null +++ b/bundle/vim-pathogen @@ -0,0 +1 @@ +Subproject commit ab64b4ddd0c184a528780b498a0b0a5b40248f7c -- cgit 1.4.1 From 4a7edd58f3d9ba38136d942c5f535f6b364ea147 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 14 Jan 2012 19:49:58 -0500 Subject: Added maps for some Fugitive commands --- .vimrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.vimrc b/.vimrc index 8d962cc3..bd1fc066 100644 --- a/.vimrc +++ b/.vimrc @@ -97,5 +97,8 @@ nmap Q gq nmap t :NERDTreeToggle nmap b :BuffergatorToggle +nmap gs :Gstatus +nmap gc :Gcommit + " Custom commands command! W :w -- cgit 1.4.1 From 10a8a533e75e757026fc059002b311250543d38a Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 14 Jan 2012 19:57:48 -0500 Subject: Added gist-vim --- .gitmodules | 3 +++ bundle/gist-vim | 1 + 2 files changed, 4 insertions(+) create mode 160000 bundle/gist-vim diff --git a/.gitmodules b/.gitmodules index 87514d90..752e0632 100644 --- a/.gitmodules +++ b/.gitmodules @@ -22,3 +22,6 @@ [submodule "bundle/vim-buffergator"] path = bundle/vim-buffergator url = https://github.com/jeetsukumaran/vim-buffergator.git +[submodule "bundle/gist-vim"] + path = bundle/gist-vim + url = https://github.com/mattn/gist-vim.git diff --git a/bundle/gist-vim b/bundle/gist-vim new file mode 160000 index 00000000..948266a5 --- /dev/null +++ b/bundle/gist-vim @@ -0,0 +1 @@ +Subproject commit 948266a54fd90473d7fbbbf663d5ddfa6d6d1158 -- cgit 1.4.1 From 6bb9c51f4bbc7d5f217857800014842f9a602281 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 14 Jan 2012 20:02:58 -0500 Subject: Added ooc.vim --- .gitmodules | 3 +++ bundle/ooc.vim | 1 + 2 files changed, 4 insertions(+) create mode 160000 bundle/ooc.vim diff --git a/.gitmodules b/.gitmodules index 752e0632..2e3a93b9 100644 --- a/.gitmodules +++ b/.gitmodules @@ -25,3 +25,6 @@ [submodule "bundle/gist-vim"] path = bundle/gist-vim url = https://github.com/mattn/gist-vim.git +[submodule "bundle/ooc.vim"] + path = bundle/ooc.vim + url = git://github.com/programble/ooc.vim.git diff --git a/bundle/ooc.vim b/bundle/ooc.vim new file mode 160000 index 00000000..69c9ee7c --- /dev/null +++ b/bundle/ooc.vim @@ -0,0 +1 @@ +Subproject commit 69c9ee7c366c488ee076e479b76cefbb517c210b -- cgit 1.4.1 From 45ff385292c7a968d5e3e30f6d717077eaebca2c Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 14 Jan 2012 20:04:59 -0500 Subject: Map ,gp to :Git push --- .vimrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.vimrc b/.vimrc index bd1fc066..f40fad68 100644 --- a/.vimrc +++ b/.vimrc @@ -99,6 +99,7 @@ nmap b :BuffergatorToggle nmap gs :Gstatus nmap gc :Gcommit +nmap gp :Git push " Custom commands command! W :w -- cgit 1.4.1 From f1a00ef20ae54be7cff743526d8b031c17ac8329 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 14 Jan 2012 20:50:45 -0500 Subject: Added a silly README --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 00000000..cc31bf06 --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +# VIM Configuration + +My amazing VIM configuration + +## Install + +``` +cd ~ +git clone git://github.com/programble/dotvim.git .vim +ln -s .vim/.vimrc .vimrc +cd .vim +git submodule init +git submodule update +``` -- cgit 1.4.1 From ee0ff85785a8b3bb7d78f0d6d06758b643edf64d Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 14 Jan 2012 21:04:45 -0500 Subject: Disable scrollbars --- .vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index f40fad68..591df6c9 100644 --- a/.vimrc +++ b/.vimrc @@ -42,7 +42,7 @@ if has('mouse') endif " GUI options -set guioptions-=tT " Disable tear-off menus and toolbar +set guioptions-=rLtT " Disable tear-off menus, toolbar, scrollbars set guifont=Monospace\ 9 set browsedir=buffer " Open dialog starts in working directory -- cgit 1.4.1 From 0885779bfa0bb1bbb78cd5902d54d43735a319f3 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 15 Jan 2012 14:38:24 -0500 Subject: Moved comments out of maps --- .vimrc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.vimrc b/.vimrc index 591df6c9..46888e3e 100644 --- a/.vimrc +++ b/.vimrc @@ -80,8 +80,10 @@ let g:buffergator_suppress_keymaps=1 nnoremap ' ` nnoremap ` ' -nmap n :silent :nohlsearch " Clear search highlights -nmap s :set list! " Toggle visible whitespace +" Clear search highlights +nmap n :silent :nohlsearch +" Toggle visible whitespace +nmap s :set list! nmap p "+p nmap P "+P @@ -90,7 +92,8 @@ nmap Y "+Y nmap d "+d nmap D "+D -imap " Insert hard tab +" Insert hard tab +imap nmap Q gq -- cgit 1.4.1 From 4e6180372014914c23203175bc8284f0dbd4ce46 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 21 Jan 2012 22:43:41 -0500 Subject: Add quicktask --- .gitmodules | 3 +++ .vimrc | 2 +- bundle/quicktask | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) create mode 160000 bundle/quicktask diff --git a/.gitmodules b/.gitmodules index 2e3a93b9..293bb8f2 100644 --- a/.gitmodules +++ b/.gitmodules @@ -28,3 +28,6 @@ [submodule "bundle/ooc.vim"] path = bundle/ooc.vim url = git://github.com/programble/ooc.vim.git +[submodule "bundle/quicktask"] + path = bundle/quicktask + url = https://github.com/aaronbieber/quicktask.git diff --git a/.vimrc b/.vimrc index 46888e3e..f711d337 100644 --- a/.vimrc +++ b/.vimrc @@ -97,7 +97,7 @@ imap nmap Q gq -nmap t :NERDTreeToggle +"nmap t :NERDTreeToggle nmap b :BuffergatorToggle nmap gs :Gstatus diff --git a/bundle/quicktask b/bundle/quicktask new file mode 160000 index 00000000..8bc7603f --- /dev/null +++ b/bundle/quicktask @@ -0,0 +1 @@ +Subproject commit 8bc7603fe96966e1389868774d0f3448c655db26 -- cgit 1.4.1 From dfd897cef6947610953cb0bbff34e2fbe3e3f3a1 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 21 Jan 2012 23:11:35 -0500 Subject: Add Powerline --- .gitmodules | 3 +++ .vimrc | 1 + bundle/vim-powerline | 1 + 3 files changed, 5 insertions(+) create mode 160000 bundle/vim-powerline diff --git a/.gitmodules b/.gitmodules index 293bb8f2..19356752 100644 --- a/.gitmodules +++ b/.gitmodules @@ -31,3 +31,6 @@ [submodule "bundle/quicktask"] path = bundle/quicktask url = https://github.com/aaronbieber/quicktask.git +[submodule "bundle/vim-powerline"] + path = bundle/vim-powerline + url = https://github.com/Lokaltog/vim-powerline.git diff --git a/.vimrc b/.vimrc index f711d337..cda825a0 100644 --- a/.vimrc +++ b/.vimrc @@ -45,6 +45,7 @@ endif set guioptions-=rLtT " Disable tear-off menus, toolbar, scrollbars set guifont=Monospace\ 9 set browsedir=buffer " Open dialog starts in working directory +let g:Powerline_symbols = 'fancy' " Jump to the last cursor position when opening autocmd BufReadPost * diff --git a/bundle/vim-powerline b/bundle/vim-powerline new file mode 160000 index 00000000..23b4bbd7 --- /dev/null +++ b/bundle/vim-powerline @@ -0,0 +1 @@ +Subproject commit 23b4bbd7b555367a714de66ccde468c08464f5a3 -- cgit 1.4.1 From edc5f5c5e16c47321d2989ddb2770e136350d2a6 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 22 Jan 2012 00:05:29 -0500 Subject: Add syntastic --- .gitmodules | 3 +++ .vimrc | 5 +++++ bundle/syntastic | 1 + 3 files changed, 9 insertions(+) create mode 160000 bundle/syntastic diff --git a/.gitmodules b/.gitmodules index 19356752..45d1b35d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -34,3 +34,6 @@ [submodule "bundle/vim-powerline"] path = bundle/vim-powerline url = https://github.com/Lokaltog/vim-powerline.git +[submodule "bundle/syntastic"] + path = bundle/syntastic + url = https://github.com/scrooloose/syntastic.git diff --git a/.vimrc b/.vimrc index cda825a0..b023e02f 100644 --- a/.vimrc +++ b/.vimrc @@ -75,6 +75,11 @@ runtime macros/matchit.vim autocmd InsertEnter * setlocal nolist autocmd InsertLeave * setlocal list +" Syntastic options +let g:syntastic_check_on_open=1 +let g:syntastic_enable_signs=0 +let g:syntastic_auto_loc_list=1 + " Custom maps let g:buffergator_suppress_keymaps=1 diff --git a/bundle/syntastic b/bundle/syntastic new file mode 160000 index 00000000..fe5b8989 --- /dev/null +++ b/bundle/syntastic @@ -0,0 +1 @@ +Subproject commit fe5b8989afa1859751acc34d9c0c6f8ccef44f6a -- cgit 1.4.1 From 40719699473767091caf35b9926bb7e6336ab7a9 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 22 Jan 2012 00:35:04 -0500 Subject: Add Jellybeans colorscheme --- .gitmodules | 3 +++ bundle/jellybeans.vim | 1 + 2 files changed, 4 insertions(+) create mode 160000 bundle/jellybeans.vim diff --git a/.gitmodules b/.gitmodules index 45d1b35d..7c08c5fa 100644 --- a/.gitmodules +++ b/.gitmodules @@ -37,3 +37,6 @@ [submodule "bundle/syntastic"] path = bundle/syntastic url = https://github.com/scrooloose/syntastic.git +[submodule "bundle/jellybeans.vim"] + path = bundle/jellybeans.vim + url = https://github.com/nanotech/jellybeans.vim.git diff --git a/bundle/jellybeans.vim b/bundle/jellybeans.vim new file mode 160000 index 00000000..e40227c0 --- /dev/null +++ b/bundle/jellybeans.vim @@ -0,0 +1 @@ +Subproject commit e40227c0c05c1de05352aabd99e76f65ae18def8 -- cgit 1.4.1 From f4dd29bacb0cb0503bc90b40f9586eee5153dd10 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 22 Jan 2012 00:39:59 -0500 Subject: Add Gundo --- .gitmodules | 3 +++ bundle/gundo.vim | 1 + 2 files changed, 4 insertions(+) create mode 160000 bundle/gundo.vim diff --git a/.gitmodules b/.gitmodules index 7c08c5fa..dfd744a1 100644 --- a/.gitmodules +++ b/.gitmodules @@ -40,3 +40,6 @@ [submodule "bundle/jellybeans.vim"] path = bundle/jellybeans.vim url = https://github.com/nanotech/jellybeans.vim.git +[submodule "bundle/gundo.vim"] + path = bundle/gundo.vim + url = http://github.com/sjl/gundo.vim.git diff --git a/bundle/gundo.vim b/bundle/gundo.vim new file mode 160000 index 00000000..50092711 --- /dev/null +++ b/bundle/gundo.vim @@ -0,0 +1 @@ +Subproject commit 50092711ff831742cece76f3322674858863e3f3 -- cgit 1.4.1 From fd726cf9ed4f9dc789a96578d55eefb8d7e92dae Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 22 Jan 2012 00:44:04 -0500 Subject: Add binding for Gundo --- .vimrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.vimrc b/.vimrc index b023e02f..94772f0c 100644 --- a/.vimrc +++ b/.vimrc @@ -110,5 +110,7 @@ nmap gs :Gstatus nmap gc :Gcommit nmap gp :Git push +nnoremap u :GundoToggle + " Custom commands command! W :w -- cgit 1.4.1 From 2705f4b91a56caf4cf2b3b89b247580debd5d453 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 22 Jan 2012 01:25:09 -0500 Subject: Add AutoClose --- .gitmodules | 3 +++ bundle/AutoClose | 1 + 2 files changed, 4 insertions(+) create mode 160000 bundle/AutoClose diff --git a/.gitmodules b/.gitmodules index dfd744a1..2af50670 100644 --- a/.gitmodules +++ b/.gitmodules @@ -43,3 +43,6 @@ [submodule "bundle/gundo.vim"] path = bundle/gundo.vim url = http://github.com/sjl/gundo.vim.git +[submodule "bundle/AutoClose"] + path = bundle/AutoClose + url = https://github.com/vim-scripts/AutoClose.git diff --git a/bundle/AutoClose b/bundle/AutoClose new file mode 160000 index 00000000..d50ea9a8 --- /dev/null +++ b/bundle/AutoClose @@ -0,0 +1 @@ +Subproject commit d50ea9a887e14e1af43788beaa66144bbc745cb5 -- cgit 1.4.1 From c3ac6ac4be49ae62340278eaa0e2dcde1765827e Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 22 Jan 2012 01:31:03 -0500 Subject: Add vim-space --- .gitmodules | 3 +++ bundle/vim-space | 1 + 2 files changed, 4 insertions(+) create mode 160000 bundle/vim-space diff --git a/.gitmodules b/.gitmodules index 2af50670..ec4c7b2c 100644 --- a/.gitmodules +++ b/.gitmodules @@ -46,3 +46,6 @@ [submodule "bundle/AutoClose"] path = bundle/AutoClose url = https://github.com/vim-scripts/AutoClose.git +[submodule "bundle/vim-space"] + path = bundle/vim-space + url = https://github.com/spiiph/vim-space.git diff --git a/bundle/vim-space b/bundle/vim-space new file mode 160000 index 00000000..9440e388 --- /dev/null +++ b/bundle/vim-space @@ -0,0 +1 @@ +Subproject commit 9440e388cc75754ab7c58441f3ef965a70a411db -- cgit 1.4.1 From d817bb6b6bbcd0bd52037020d36a5d60595c2791 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 22 Jan 2012 03:17:25 -0500 Subject: Map ,e and ,b to CtrlP file and buffer respectively --- .vimrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vimrc b/.vimrc index 94772f0c..2dc9d72b 100644 --- a/.vimrc +++ b/.vimrc @@ -103,8 +103,8 @@ imap nmap Q gq -"nmap t :NERDTreeToggle -nmap b :BuffergatorToggle +nmap b :CtrlPBuffer +nmap e :CtrlP nmap gs :Gstatus nmap gc :Gcommit -- cgit 1.4.1 From f4cc36a0aca465eea866fa7131a19497d46e63f0 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 22 Jan 2012 12:40:05 -0500 Subject: Add VCS repo directories to wildignore --- .vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index 2dc9d72b..f1043d1a 100644 --- a/.vimrc +++ b/.vimrc @@ -66,7 +66,7 @@ autocmd FileType cpp setlocal sw=4 " Better tab-complete when opening set wildmenu set wildmode=list:longest -set wildignore=*.o,*.d,*~ +set wildignore=*.o,*.d,*~,*/.git/*,*/.hg/*,*/.svn/* " Smarter % runtime macros/matchit.vim -- cgit 1.4.1 From 46de84d06a41123fb5796c81f1627796302f1662 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 22 Jan 2012 12:51:26 -0500 Subject: Update some plugins --- bundle/ctrlp.vim | 2 +- bundle/vim-powerline | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bundle/ctrlp.vim b/bundle/ctrlp.vim index 420174fc..a13d90fd 160000 --- a/bundle/ctrlp.vim +++ b/bundle/ctrlp.vim @@ -1 +1 @@ -Subproject commit 420174fc537ba986a716964db7af0bd189252944 +Subproject commit a13d90fd2a62fcb91286e7237b182a2687237c60 diff --git a/bundle/vim-powerline b/bundle/vim-powerline index 23b4bbd7..f2acebb7 160000 --- a/bundle/vim-powerline +++ b/bundle/vim-powerline @@ -1 +1 @@ -Subproject commit 23b4bbd7b555367a714de66ccde468c08464f5a3 +Subproject commit f2acebb789583367c39a6c665e6caed5fc2b7b72 -- cgit 1.4.1 From 171b1aa0d1d445a1223d0d638f2798b780c3e1ce Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 22 Jan 2012 13:27:09 -0500 Subject: Disable powerline for now --- .vimrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.vimrc b/.vimrc index f1043d1a..dcbd9082 100644 --- a/.vimrc +++ b/.vimrc @@ -114,3 +114,5 @@ nnoremap u :GundoToggle " Custom commands command! W :w + +let g:Powerline_loaded=1 -- cgit 1.4.1 From 611172913b0573ba44b8e9878831c98ab53a9133 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 22 Jan 2012 13:33:12 -0500 Subject: Revert "Add VCS repo directories to wildignore" This reverts commit f4cc36a0aca465eea866fa7131a19497d46e63f0. This fixes not being able to commit with vim-fugitive --- .vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index dcbd9082..b50e63a1 100644 --- a/.vimrc +++ b/.vimrc @@ -66,7 +66,7 @@ autocmd FileType cpp setlocal sw=4 " Better tab-complete when opening set wildmenu set wildmode=list:longest -set wildignore=*.o,*.d,*~,*/.git/*,*/.hg/*,*/.svn/* +set wildignore=*.o,*.d,*~ " Smarter % runtime macros/matchit.vim -- cgit 1.4.1 From f5deade8fe9c2ac24e729a61912244dd5cab6d89 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 22 Jan 2012 13:39:25 -0500 Subject: Revert "Disable powerline for now" This reverts commit 171b1aa0d1d445a1223d0d638f2798b780c3e1ce. --- .vimrc | 2 -- 1 file changed, 2 deletions(-) diff --git a/.vimrc b/.vimrc index b50e63a1..2dc9d72b 100644 --- a/.vimrc +++ b/.vimrc @@ -114,5 +114,3 @@ nnoremap u :GundoToggle " Custom commands command! W :w - -let g:Powerline_loaded=1 -- cgit 1.4.1 From e6d82176abd53d1cd5dff785c59a713ca8c73207 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 22 Jan 2012 13:58:19 -0500 Subject: Revert "Add AutoClose" This reverts commit 2705f4b91a56caf4cf2b3b89b247580debd5d453. This fixes the delay when leaving insert mode --- .gitmodules | 3 --- bundle/AutoClose | 1 - 2 files changed, 4 deletions(-) delete mode 160000 bundle/AutoClose diff --git a/.gitmodules b/.gitmodules index ec4c7b2c..1009237e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -43,9 +43,6 @@ [submodule "bundle/gundo.vim"] path = bundle/gundo.vim url = http://github.com/sjl/gundo.vim.git -[submodule "bundle/AutoClose"] - path = bundle/AutoClose - url = https://github.com/vim-scripts/AutoClose.git [submodule "bundle/vim-space"] path = bundle/vim-space url = https://github.com/spiiph/vim-space.git diff --git a/bundle/AutoClose b/bundle/AutoClose deleted file mode 160000 index d50ea9a8..00000000 --- a/bundle/AutoClose +++ /dev/null @@ -1 +0,0 @@ -Subproject commit d50ea9a887e14e1af43788beaa66144bbc745cb5 -- cgit 1.4.1 From 4b2f50e645dd8cb6ef18f74e31776d5c3ac3c315 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 22 Jan 2012 14:17:21 -0500 Subject: Update quicktask --- bundle/quicktask | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/quicktask b/bundle/quicktask index 8bc7603f..97bc5e98 160000 --- a/bundle/quicktask +++ b/bundle/quicktask @@ -1 +1 @@ -Subproject commit 8bc7603fe96966e1389868774d0f3448c655db26 +Subproject commit 97bc5e98582f23004e983d64f9f219ce7dc1af66 -- cgit 1.4.1 From 4993e98ea6b083679bd968c72400101b140eeaa3 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 22 Jan 2012 15:00:25 -0500 Subject: Enable syntax-based folding --- .vimrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.vimrc b/.vimrc index 2dc9d72b..65b4046d 100644 --- a/.vimrc +++ b/.vimrc @@ -29,6 +29,8 @@ set smarttab set hlsearch set list set listchars=tab:»·,trail:· +set foldmethod=syntax +set foldlevel=1000 set laststatus=2 " Always show statusline set statusline=%<%f\ %h%m%r%{fugitive#statusline()}%=%-14.(%l,%c%V%)\ %P -- cgit 1.4.1 From e9363022c79935d6717e75591ec3f1771fa7ed66 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 22 Jan 2012 22:17:22 -0500 Subject: Use space-test branch of quicktask --- bundle/quicktask | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/quicktask b/bundle/quicktask index 97bc5e98..de6ef009 160000 --- a/bundle/quicktask +++ b/bundle/quicktask @@ -1 +1 @@ -Subproject commit 97bc5e98582f23004e983d64f9f219ce7dc1af66 +Subproject commit de6ef00976f0d0b3ce50cb06d0b826309c742242 -- cgit 1.4.1 From a3b1ceacd907bda6927b5519dce1c1d5478058b1 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 28 Jan 2012 02:09:01 -0500 Subject: Update to Quicktask 1.1 --- bundle/quicktask | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/quicktask b/bundle/quicktask index de6ef009..4669e57d 160000 --- a/bundle/quicktask +++ b/bundle/quicktask @@ -1 +1 @@ -Subproject commit de6ef00976f0d0b3ce50cb06d0b826309c742242 +Subproject commit 4669e57d2b4d0d7170e0aca99c55c9c90e9f8bf6 -- cgit 1.4.1 From fa0cd7902640364791c882d62876b922f006e287 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 29 Jan 2012 21:58:08 -0500 Subject: Don't show Syntastic errors automatically --- .vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index 65b4046d..78557059 100644 --- a/.vimrc +++ b/.vimrc @@ -80,7 +80,7 @@ autocmd InsertLeave * setlocal list " Syntastic options let g:syntastic_check_on_open=1 let g:syntastic_enable_signs=0 -let g:syntastic_auto_loc_list=1 +let g:syntastic_auto_loc_list=2 " Custom maps let g:buffergator_suppress_keymaps=1 -- cgit 1.4.1 From 3d446f3c951ff490b0a5b73f76108f1b93768854 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Mon, 30 Jan 2012 15:18:50 -0500 Subject: Set shiftwidth to 4 for Lua --- .vimrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.vimrc b/.vimrc index 78557059..911242b2 100644 --- a/.vimrc +++ b/.vimrc @@ -64,6 +64,7 @@ filetype plugin indent on " Indentation exceptions autocmd FileType c setlocal sw=4 autocmd FileType cpp setlocal sw=4 +autocmd FileType lua setlocal sw=4 " Better tab-complete when opening set wildmenu -- cgit 1.4.1 From 8e0c623e1a20ff9beb5cbaf8d15465c891ad24ac Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Mon, 30 Jan 2012 15:20:44 -0500 Subject: Disable menu bar in GVim --- .vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index 911242b2..d217ac5d 100644 --- a/.vimrc +++ b/.vimrc @@ -44,7 +44,7 @@ if has('mouse') endif " GUI options -set guioptions-=rLtT " Disable tear-off menus, toolbar, scrollbars +set guioptions-=mrLtT " Disable tear-off menus, toolbar, scrollbars set guifont=Monospace\ 9 set browsedir=buffer " Open dialog starts in working directory let g:Powerline_symbols = 'fancy' -- cgit 1.4.1 From afa8e251500dd9c1d059f518147fb102b7e80160 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Wed, 1 Feb 2012 15:14:05 -0500 Subject: Update Vim-Tomorrow-Theme PS. Chris Kempson is a jerk. --- bundle/Vim-Tomorrow-Theme | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/Vim-Tomorrow-Theme b/bundle/Vim-Tomorrow-Theme index ae8edac5..cc6b5cb9 160000 --- a/bundle/Vim-Tomorrow-Theme +++ b/bundle/Vim-Tomorrow-Theme @@ -1 +1 @@ -Subproject commit ae8edac57291e3e9ac9dd59e1dda6e961836df28 +Subproject commit cc6b5cb9aff0ae52a8cd8076f9b7f4ecb33eacbf -- cgit 1.4.1 From 3c07ccd065fdaae8442290e828f89a2f5716202b Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Wed, 1 Feb 2012 19:24:31 -0500 Subject: Add tabular.vim --- .gitmodules | 3 +++ bundle/tabular | 1 + 2 files changed, 4 insertions(+) create mode 160000 bundle/tabular diff --git a/.gitmodules b/.gitmodules index 1009237e..1764aa52 100644 --- a/.gitmodules +++ b/.gitmodules @@ -46,3 +46,6 @@ [submodule "bundle/vim-space"] path = bundle/vim-space url = https://github.com/spiiph/vim-space.git +[submodule "bundle/tabular"] + path = bundle/tabular + url = https://github.com/godlygeek/tabular.git diff --git a/bundle/tabular b/bundle/tabular new file mode 160000 index 00000000..b7b4d879 --- /dev/null +++ b/bundle/tabular @@ -0,0 +1 @@ +Subproject commit b7b4d8791a50013b56c2d68b6c5708c808203b54 -- cgit 1.4.1 From a35e87849fca46b2fbfedc88cb6db8b6361971be Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Wed, 1 Feb 2012 19:27:23 -0500 Subject: Add vim-markdown --- .gitmodules | 3 +++ bundle/vim-markdown | 1 + 2 files changed, 4 insertions(+) create mode 160000 bundle/vim-markdown diff --git a/.gitmodules b/.gitmodules index 1764aa52..b0e9adb2 100644 --- a/.gitmodules +++ b/.gitmodules @@ -49,3 +49,6 @@ [submodule "bundle/tabular"] path = bundle/tabular url = https://github.com/godlygeek/tabular.git +[submodule "bundle/vim-markdown"] + path = bundle/vim-markdown + url = https://github.com/tpope/vim-markdown.git diff --git a/bundle/vim-markdown b/bundle/vim-markdown new file mode 160000 index 00000000..fdc0f091 --- /dev/null +++ b/bundle/vim-markdown @@ -0,0 +1 @@ +Subproject commit fdc0f091c78cd9a474ac3e3cf40ba7d6933ef9da -- cgit 1.4.1 From b0c8725eb6665ffdc9886ee2db277a243b9128b6 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Wed, 1 Feb 2012 19:56:30 -0500 Subject: Update Vim-Tomorrow-Theme --- bundle/Vim-Tomorrow-Theme | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/Vim-Tomorrow-Theme b/bundle/Vim-Tomorrow-Theme index cc6b5cb9..9a9beed3 160000 --- a/bundle/Vim-Tomorrow-Theme +++ b/bundle/Vim-Tomorrow-Theme @@ -1 +1 @@ -Subproject commit cc6b5cb9aff0ae52a8cd8076f9b7f4ecb33eacbf +Subproject commit 9a9beed332923fa1275d61748270763177d46af2 -- cgit 1.4.1 From ddcfaef5145595f8e15f34f091e50fb85a9a6149 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Wed, 1 Feb 2012 20:00:17 -0500 Subject: Add ShowMarks plugin --- .gitmodules | 3 +++ bundle/vim-showmarks | 1 + 2 files changed, 4 insertions(+) create mode 160000 bundle/vim-showmarks diff --git a/.gitmodules b/.gitmodules index b0e9adb2..386b3b83 100644 --- a/.gitmodules +++ b/.gitmodules @@ -52,3 +52,6 @@ [submodule "bundle/vim-markdown"] path = bundle/vim-markdown url = https://github.com/tpope/vim-markdown.git +[submodule "bundle/vim-showmarks"] + path = bundle/vim-showmarks + url = https://github.com/garbas/vim-showmarks.git diff --git a/bundle/vim-showmarks b/bundle/vim-showmarks new file mode 160000 index 00000000..11d9fb0e --- /dev/null +++ b/bundle/vim-showmarks @@ -0,0 +1 @@ +Subproject commit 11d9fb0e38a3894f23b9de69aa3e3990a685d73c -- cgit 1.4.1 From 4e337fd5d3aad88d892e65874778489c60b1e574 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Wed, 1 Feb 2012 20:03:08 -0500 Subject: Revert "Add ShowMarks plugin" This reverts commit ddcfaef5145595f8e15f34f091e50fb85a9a6149. --- .gitmodules | 3 --- bundle/vim-showmarks | 1 - 2 files changed, 4 deletions(-) delete mode 160000 bundle/vim-showmarks diff --git a/.gitmodules b/.gitmodules index 386b3b83..b0e9adb2 100644 --- a/.gitmodules +++ b/.gitmodules @@ -52,6 +52,3 @@ [submodule "bundle/vim-markdown"] path = bundle/vim-markdown url = https://github.com/tpope/vim-markdown.git -[submodule "bundle/vim-showmarks"] - path = bundle/vim-showmarks - url = https://github.com/garbas/vim-showmarks.git diff --git a/bundle/vim-showmarks b/bundle/vim-showmarks deleted file mode 160000 index 11d9fb0e..00000000 --- a/bundle/vim-showmarks +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 11d9fb0e38a3894f23b9de69aa3e3990a685d73c -- cgit 1.4.1 From 578f50c8e864966ff08fcf9abf3d743926e9c8ea Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Thu, 2 Feb 2012 17:40:17 -0500 Subject: Add itchy.vim --- .gitmodules | 3 +++ .vimrc | 10 ++++++---- bundle/itchy.vim | 1 + 3 files changed, 10 insertions(+), 4 deletions(-) create mode 160000 bundle/itchy.vim diff --git a/.gitmodules b/.gitmodules index b0e9adb2..eb2046aa 100644 --- a/.gitmodules +++ b/.gitmodules @@ -52,3 +52,6 @@ [submodule "bundle/vim-markdown"] path = bundle/vim-markdown url = https://github.com/tpope/vim-markdown.git +[submodule "bundle/itchy.vim"] + path = bundle/itchy.vim + url = git://github.com/programble/itchy.vim.git diff --git a/.vimrc b/.vimrc index d217ac5d..eb214fe1 100644 --- a/.vimrc +++ b/.vimrc @@ -50,10 +50,8 @@ set browsedir=buffer " Open dialog starts in working directory let g:Powerline_symbols = 'fancy' " Jump to the last cursor position when opening -autocmd BufReadPost * - \ if line("'\"") > 1 && line("'\"") <= line("$") | - \ exe "normal! g`\"" | - \ endif +au BufReadPost * if &filetype !~ '^git\c' && line("'\"") > 0 && line("'\"") <= line("$") + \| exe "normal! g`\"" | endif " Default to 2-space indents, 4-character tabs set expandtab @@ -83,6 +81,9 @@ let g:syntastic_check_on_open=1 let g:syntastic_enable_signs=0 let g:syntastic_auto_loc_list=2 +" Itchy options +let g:itchy_startup = 1 + " Custom maps let g:buffergator_suppress_keymaps=1 @@ -117,3 +118,4 @@ nnoremap u :GundoToggle " Custom commands command! W :w + diff --git a/bundle/itchy.vim b/bundle/itchy.vim new file mode 160000 index 00000000..94a1d0cd --- /dev/null +++ b/bundle/itchy.vim @@ -0,0 +1 @@ +Subproject commit 94a1d0cddc22b266766bc29e52841920bcd2aefc -- cgit 1.4.1 From ac39ce2bf9a85c78492ebe47270eb83e5bd75875 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Thu, 2 Feb 2012 22:47:30 -0500 Subject: Add mapping to toggle relative/absolute numbering --- .vimrc | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.vimrc b/.vimrc index eb214fe1..5d5e517c 100644 --- a/.vimrc +++ b/.vimrc @@ -92,6 +92,7 @@ nnoremap ` ' " Clear search highlights nmap n :silent :nohlsearch + " Toggle visible whitespace nmap s :set list! @@ -116,6 +117,17 @@ nmap gp :Git push nnoremap u :GundoToggle +" Toggle relative/absolute numbers +function! NumberToggle() + if(&relativenumber == 1) + set number + else + set relativenumber + endif +endfunc + +nnoremap :call NumberToggle() + " Custom commands command! W :w -- cgit 1.4.1 From 9ffac37bf98d91b37de2c1070e3e450b681ab4d4 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Thu, 2 Feb 2012 22:47:59 -0500 Subject: Update itchy.vim --- bundle/itchy.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/itchy.vim b/bundle/itchy.vim index 94a1d0cd..10218ccb 160000 --- a/bundle/itchy.vim +++ b/bundle/itchy.vim @@ -1 +1 @@ -Subproject commit 94a1d0cddc22b266766bc29e52841920bcd2aefc +Subproject commit 10218ccbc687a5d0db42a29ddb6ae9ed0f89cb8e -- cgit 1.4.1 From 9cb3af3b64e9efcaeda6c90abaf13bcf7d262377 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 5 Feb 2012 18:34:13 -0500 Subject: Update jellybeans --- bundle/jellybeans.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/jellybeans.vim b/bundle/jellybeans.vim index e40227c0..2c306097 160000 --- a/bundle/jellybeans.vim +++ b/bundle/jellybeans.vim @@ -1 +1 @@ -Subproject commit e40227c0c05c1de05352aabd99e76f65ae18def8 +Subproject commit 2c306097f8320286ae26fd9e45b9c0a8911ec210 -- cgit 1.4.1 From 63b4fe6d66a96b74072e967164b8c6ee934a2e86 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Tue, 7 Feb 2012 21:36:49 -0500 Subject: Add back set nocompatible, even though it seemed to end up set anyway --- .vimrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.vimrc b/.vimrc index 5d5e517c..1327ef2b 100644 --- a/.vimrc +++ b/.vimrc @@ -1,3 +1,5 @@ +set nocp " No child-porn here :P + " Load pathogen runtime bundle/vim-pathogen/autoload/pathogen.vim call pathogen#infect() -- cgit 1.4.1 From 052df97b6c89669ffd17b3058f51bdf63dcb3f53 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Tue, 7 Feb 2012 21:39:03 -0500 Subject: Add Solarized colorscheme --- .gitmodules | 3 +++ bundle/vim-colors-solarized | 1 + 2 files changed, 4 insertions(+) create mode 160000 bundle/vim-colors-solarized diff --git a/.gitmodules b/.gitmodules index eb2046aa..00195c73 100644 --- a/.gitmodules +++ b/.gitmodules @@ -55,3 +55,6 @@ [submodule "bundle/itchy.vim"] path = bundle/itchy.vim url = git://github.com/programble/itchy.vim.git +[submodule "bundle/vim-colors-solarized"] + path = bundle/vim-colors-solarized + url = https://github.com/altercation/vim-colors-solarized.git diff --git a/bundle/vim-colors-solarized b/bundle/vim-colors-solarized new file mode 160000 index 00000000..528a59f2 --- /dev/null +++ b/bundle/vim-colors-solarized @@ -0,0 +1 @@ +Subproject commit 528a59f26d12278698bb946f8fb82a63711eec21 -- cgit 1.4.1 From fc7924f13c3db88602298f874032020a80013d43 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Tue, 7 Feb 2012 21:50:04 -0500 Subject: Update Powerline to 'develop' branch --- bundle/vim-powerline | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/vim-powerline b/bundle/vim-powerline index f2acebb7..ca8b897f 160000 --- a/bundle/vim-powerline +++ b/bundle/vim-powerline @@ -1 +1 @@ -Subproject commit f2acebb789583367c39a6c665e6caed5fc2b7b72 +Subproject commit ca8b897f67e8e15cf39a308ca012c5a53929d10d -- cgit 1.4.1 From 8ac125f175d8dec9c5d5864e6b1d868c1529f406 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 11 Feb 2012 12:12:30 -0500 Subject: Customize C/C++ indentation --- .vimrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.vimrc b/.vimrc index 1327ef2b..d174d9f9 100644 --- a/.vimrc +++ b/.vimrc @@ -66,6 +66,12 @@ autocmd FileType c setlocal sw=4 autocmd FileType cpp setlocal sw=4 autocmd FileType lua setlocal sw=4 +" C/C++ indent options +" :0 Align case with switch +" l1 Indent case bodies with braces to case +" g0 Align "public:" and friends to class +set cinoptions=:0,l1,g0 + " Better tab-complete when opening set wildmenu set wildmode=list:longest -- cgit 1.4.1 From 3b2e8308f11472b7068bd8db43e0b7b0b66a2f02 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Mon, 13 Feb 2012 01:44:56 -0500 Subject: Add badwolf colorscheme --- .gitmodules | 3 +++ bundle/badwolf | 1 + 2 files changed, 4 insertions(+) create mode 160000 bundle/badwolf diff --git a/.gitmodules b/.gitmodules index 00195c73..e94b814b 100644 --- a/.gitmodules +++ b/.gitmodules @@ -58,3 +58,6 @@ [submodule "bundle/vim-colors-solarized"] path = bundle/vim-colors-solarized url = https://github.com/altercation/vim-colors-solarized.git +[submodule "bundle/badwolf"] + path = bundle/badwolf + url = https://github.com/sjl/badwolf.git diff --git a/bundle/badwolf b/bundle/badwolf new file mode 160000 index 00000000..4337437d --- /dev/null +++ b/bundle/badwolf @@ -0,0 +1 @@ +Subproject commit 4337437dc0a40a02be78911dc6bf6fee5129bb1f -- cgit 1.4.1 From eda85175d70cbaf5bbda300890608c64e9343383 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 25 Feb 2012 13:38:34 -0500 Subject: Add ,z mapping to toggle spell --- .vimrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index d174d9f9..ae54f43b 100644 --- a/.vimrc +++ b/.vimrc @@ -101,9 +101,10 @@ nnoremap ` ' " Clear search highlights nmap n :silent :nohlsearch -" Toggle visible whitespace nmap s :set list! +nmap z :set spell! + nmap p "+p nmap P "+P nmap y "+y -- cgit 1.4.1 From 59a061744acf7f8185dd3fb5378b4b9a77407377 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Wed, 29 Feb 2012 15:25:21 -0500 Subject: Add shiftround option --- .vimrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.vimrc b/.vimrc index ae54f43b..4c531bc5 100644 --- a/.vimrc +++ b/.vimrc @@ -59,6 +59,7 @@ au BufReadPost * if &filetype !~ '^git\c' && line("'\"") > 0 && line("'\"") <= l set expandtab set shiftwidth=2 set tabstop=4 +set shiftround filetype plugin indent on " Indentation exceptions -- cgit 1.4.1 From 020c589d9551674d9943aa8a377a14fc937a657c Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Wed, 29 Feb 2012 15:25:30 -0500 Subject: Update Powerline --- bundle/vim-powerline | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/vim-powerline b/bundle/vim-powerline index ca8b897f..2bf4f2ff 160000 --- a/bundle/vim-powerline +++ b/bundle/vim-powerline @@ -1 +1 @@ -Subproject commit ca8b897f67e8e15cf39a308ca012c5a53929d10d +Subproject commit 2bf4f2ffca1892fe3a1be8388f0f11d59e187802 -- cgit 1.4.1 From 6a10bc7b9bbb9f442c1e7c8da90cf75996d6b5f0 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Fri, 2 Mar 2012 14:41:15 -0500 Subject: Update Vim-Tomorrow-Theme --- bundle/Vim-Tomorrow-Theme | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/Vim-Tomorrow-Theme b/bundle/Vim-Tomorrow-Theme index 9a9beed3..022e15d0 160000 --- a/bundle/Vim-Tomorrow-Theme +++ b/bundle/Vim-Tomorrow-Theme @@ -1 +1 @@ -Subproject commit 9a9beed332923fa1275d61748270763177d46af2 +Subproject commit 022e15d0265d590f3da5894490dbc7b173b0c4c9 -- cgit 1.4.1 From 4add94dec17ac49279134bfa7e708d4f5d5c337d Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 3 Mar 2012 23:04:30 -0500 Subject: Update Vim-Tomorrow-Theme --- bundle/Vim-Tomorrow-Theme | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/Vim-Tomorrow-Theme b/bundle/Vim-Tomorrow-Theme index 022e15d0..1e0c2ab5 160000 --- a/bundle/Vim-Tomorrow-Theme +++ b/bundle/Vim-Tomorrow-Theme @@ -1 +1 @@ -Subproject commit 022e15d0265d590f3da5894490dbc7b173b0c4c9 +Subproject commit 1e0c2ab5d5a82d7adecbc84f689abcf217bd1b50 -- cgit 1.4.1 From 751af63284fb62df4fcde66ce56df6b2c33ec621 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 11 Mar 2012 17:24:49 -0400 Subject: Rebind Y to y$ for more consistent behaviour --- .vimrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.vimrc b/.vimrc index 4c531bc5..3314dfe0 100644 --- a/.vimrc +++ b/.vimrc @@ -113,6 +113,8 @@ nmap Y "+Y nmap d "+d nmap D "+D +nmap Y y$ + " Insert hard tab imap -- cgit 1.4.1 From 19f7bee5cd4be1646e62acb43f333b037a3f7781 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Fri, 30 Mar 2012 15:25:30 -0400 Subject: Add vim-smartinput --- .gitmodules | 3 +++ bundle/vim-smartinput | 1 + 2 files changed, 4 insertions(+) create mode 160000 bundle/vim-smartinput diff --git a/.gitmodules b/.gitmodules index e94b814b..0c6f84fc 100644 --- a/.gitmodules +++ b/.gitmodules @@ -61,3 +61,6 @@ [submodule "bundle/badwolf"] path = bundle/badwolf url = https://github.com/sjl/badwolf.git +[submodule "bundle/vim-smartinput"] + path = bundle/vim-smartinput + url = https://github.com/kana/vim-smartinput.git diff --git a/bundle/vim-smartinput b/bundle/vim-smartinput new file mode 160000 index 00000000..c01d81a6 --- /dev/null +++ b/bundle/vim-smartinput @@ -0,0 +1 @@ +Subproject commit c01d81a697de5e28452f32762a9c8fbe3eac0496 -- cgit 1.4.1 From 33b392bd47cff37f948f7301b8cb0b2dd0b58dca Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 1 Apr 2012 00:47:20 -0400 Subject: Update vim-smartinput --- bundle/vim-smartinput | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/vim-smartinput b/bundle/vim-smartinput index c01d81a6..66af777e 160000 --- a/bundle/vim-smartinput +++ b/bundle/vim-smartinput @@ -1 +1 @@ -Subproject commit c01d81a697de5e28452f32762a9c8fbe3eac0496 +Subproject commit 66af777e17383523c6b883456d4f30b355609a44 -- cgit 1.4.1 From 175764fe2266c23807a3996256ae586be1556d6b Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 7 Apr 2012 15:01:27 -0400 Subject: Remove Itchy startup --- .vimrc | 3 --- 1 file changed, 3 deletions(-) diff --git a/.vimrc b/.vimrc index 3314dfe0..e35db89d 100644 --- a/.vimrc +++ b/.vimrc @@ -90,9 +90,6 @@ let g:syntastic_check_on_open=1 let g:syntastic_enable_signs=0 let g:syntastic_auto_loc_list=2 -" Itchy options -let g:itchy_startup = 1 - " Custom maps let g:buffergator_suppress_keymaps=1 -- cgit 1.4.1 From b53181e29d0aa942d0de6ee0c213a8ca7950573b Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 5 May 2012 01:35:15 -0400 Subject: Update gist-vim --- bundle/gist-vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/gist-vim b/bundle/gist-vim index 948266a5..6682b11f 160000 --- a/bundle/gist-vim +++ b/bundle/gist-vim @@ -1 +1 @@ -Subproject commit 948266a54fd90473d7fbbbf663d5ddfa6d6d1158 +Subproject commit 6682b11f36d65dc4cb39f8c802922d40a5746be6 -- cgit 1.4.1 From 0c2b8774eb3eba868d6ff5f8fb538dfecac5c32a Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 5 May 2012 01:39:15 -0400 Subject: Add webapi-vim --- .gitmodules | 3 +++ bundle/webapi-vim | 1 + 2 files changed, 4 insertions(+) create mode 160000 bundle/webapi-vim diff --git a/.gitmodules b/.gitmodules index 0c6f84fc..fc44cff8 100644 --- a/.gitmodules +++ b/.gitmodules @@ -64,3 +64,6 @@ [submodule "bundle/vim-smartinput"] path = bundle/vim-smartinput url = https://github.com/kana/vim-smartinput.git +[submodule "bundle/webapi-vim"] + path = bundle/webapi-vim + url = https://github.com/mattn/webapi-vim.git diff --git a/bundle/webapi-vim b/bundle/webapi-vim new file mode 160000 index 00000000..496032d3 --- /dev/null +++ b/bundle/webapi-vim @@ -0,0 +1 @@ +Subproject commit 496032d37f57d896b9f156df4de30a3990e7179d -- cgit 1.4.1 From ddf378f1544f6f122dc7b90657a0114a49821aea Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 6 May 2012 15:11:39 -0400 Subject: Update ALL THE THINGS --- bundle/badwolf | 2 +- bundle/ctrlp.vim | 2 +- bundle/gist-vim | 2 +- bundle/gundo.vim | 2 +- bundle/nerdtree | 2 +- bundle/quicktask | 2 +- bundle/syntastic | 2 +- bundle/tabular | 2 +- bundle/vim-buffergator | 2 +- bundle/vim-fugitive | 2 +- bundle/vim-markdown | 2 +- bundle/vim-pasta | 2 +- bundle/vim-pathogen | 2 +- bundle/vim-powerline | 2 +- bundle/vim-smartinput | 2 +- 15 files changed, 15 insertions(+), 15 deletions(-) diff --git a/bundle/badwolf b/bundle/badwolf index 4337437d..01f4915d 160000 --- a/bundle/badwolf +++ b/bundle/badwolf @@ -1 +1 @@ -Subproject commit 4337437dc0a40a02be78911dc6bf6fee5129bb1f +Subproject commit 01f4915dda1b09d8eaab766c685d8f8737466e19 diff --git a/bundle/ctrlp.vim b/bundle/ctrlp.vim index a13d90fd..80bc9cea 160000 --- a/bundle/ctrlp.vim +++ b/bundle/ctrlp.vim @@ -1 +1 @@ -Subproject commit a13d90fd2a62fcb91286e7237b182a2687237c60 +Subproject commit 80bc9cea8cc435c9aa9d5ad20b768bb420e4686e diff --git a/bundle/gist-vim b/bundle/gist-vim index 6682b11f..fa65a4d8 160000 --- a/bundle/gist-vim +++ b/bundle/gist-vim @@ -1 +1 @@ -Subproject commit 6682b11f36d65dc4cb39f8c802922d40a5746be6 +Subproject commit fa65a4d8d652cb0bcca5a37ac5971ea82f905769 diff --git a/bundle/gundo.vim b/bundle/gundo.vim index 50092711..7198c51b 160000 --- a/bundle/gundo.vim +++ b/bundle/gundo.vim @@ -1 +1 @@ -Subproject commit 50092711ff831742cece76f3322674858863e3f3 +Subproject commit 7198c51b5d2b145b5ca4899fda8397e7f68efa77 diff --git a/bundle/nerdtree b/bundle/nerdtree index eced5f98..2cb0fc78 160000 --- a/bundle/nerdtree +++ b/bundle/nerdtree @@ -1 +1 @@ -Subproject commit eced5f98a0724cd6498b70024b3edec1e7b29b2e +Subproject commit 2cb0fc78fb4c7a1db5f51c042a447cc50f09983d diff --git a/bundle/quicktask b/bundle/quicktask index 4669e57d..65bbdc27 160000 --- a/bundle/quicktask +++ b/bundle/quicktask @@ -1 +1 @@ -Subproject commit 4669e57d2b4d0d7170e0aca99c55c9c90e9f8bf6 +Subproject commit 65bbdc272903c3f71c55b533de2f6a2b6bf2a555 diff --git a/bundle/syntastic b/bundle/syntastic index fe5b8989..7fc5246b 160000 --- a/bundle/syntastic +++ b/bundle/syntastic @@ -1 +1 @@ -Subproject commit fe5b8989afa1859751acc34d9c0c6f8ccef44f6a +Subproject commit 7fc5246be4be9e1034e84266ae567a08e193f764 diff --git a/bundle/tabular b/bundle/tabular index b7b4d879..ad2a5a1d 160000 --- a/bundle/tabular +++ b/bundle/tabular @@ -1 +1 @@ -Subproject commit b7b4d8791a50013b56c2d68b6c5708c808203b54 +Subproject commit ad2a5a1d54443ab27f1282c5617f55b8e0819623 diff --git a/bundle/vim-buffergator b/bundle/vim-buffergator index c6f56eac..dc879d00 160000 --- a/bundle/vim-buffergator +++ b/bundle/vim-buffergator @@ -1 +1 @@ -Subproject commit c6f56eac74c9ae9301b640e9f5bb0389a8ffd4fa +Subproject commit dc879d00891af7c53242f44ec1b571ee19bd9016 diff --git a/bundle/vim-fugitive b/bundle/vim-fugitive index b4b75ef6..765c921e 160000 --- a/bundle/vim-fugitive +++ b/bundle/vim-fugitive @@ -1 +1 @@ -Subproject commit b4b75ef682da3e946c648d3634ade39d0af49aba +Subproject commit 765c921e1f0281963009b3e06a94227a8c0a2408 diff --git a/bundle/vim-markdown b/bundle/vim-markdown index fdc0f091..3a991574 160000 --- a/bundle/vim-markdown +++ b/bundle/vim-markdown @@ -1 +1 @@ -Subproject commit fdc0f091c78cd9a474ac3e3cf40ba7d6933ef9da +Subproject commit 3a99157473cb6508d1bc6f5980f928f27f52d65b diff --git a/bundle/vim-pasta b/bundle/vim-pasta index ada8a5cf..736e2df0 160000 --- a/bundle/vim-pasta +++ b/bundle/vim-pasta @@ -1 +1 @@ -Subproject commit ada8a5cf9a826db57cf98bde808384d351fd2897 +Subproject commit 736e2df09c11a623080e71150576e94fb700e8b8 diff --git a/bundle/vim-pathogen b/bundle/vim-pathogen index ab64b4dd..09f2c3b7 160000 --- a/bundle/vim-pathogen +++ b/bundle/vim-pathogen @@ -1 +1 @@ -Subproject commit ab64b4ddd0c184a528780b498a0b0a5b40248f7c +Subproject commit 09f2c3b7d3666124157de759a68afe47d0bb8d25 diff --git a/bundle/vim-powerline b/bundle/vim-powerline index 2bf4f2ff..65e54dde 160000 --- a/bundle/vim-powerline +++ b/bundle/vim-powerline @@ -1 +1 @@ -Subproject commit 2bf4f2ffca1892fe3a1be8388f0f11d59e187802 +Subproject commit 65e54dde89c73cae4cf089a83f5c26d605dda594 diff --git a/bundle/vim-smartinput b/bundle/vim-smartinput index 66af777e..78ab4b3d 160000 --- a/bundle/vim-smartinput +++ b/bundle/vim-smartinput @@ -1 +1 @@ -Subproject commit 66af777e17383523c6b883456d4f30b355609a44 +Subproject commit 78ab4b3df24fa2753d3dfc1be75ed5a3df1565b8 -- cgit 1.4.1 From f105e9344ee35171235c5767f4e7ade1311ff130 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 6 May 2012 15:15:28 -0400 Subject: Remove buffergator --- .gitmodules | 3 --- bundle/vim-buffergator | 1 - 2 files changed, 4 deletions(-) delete mode 160000 bundle/vim-buffergator diff --git a/.gitmodules b/.gitmodules index fc44cff8..f28f3a48 100644 --- a/.gitmodules +++ b/.gitmodules @@ -19,9 +19,6 @@ [submodule "bundle/nerdtree"] path = bundle/nerdtree url = https://github.com/scrooloose/nerdtree.git -[submodule "bundle/vim-buffergator"] - path = bundle/vim-buffergator - url = https://github.com/jeetsukumaran/vim-buffergator.git [submodule "bundle/gist-vim"] path = bundle/gist-vim url = https://github.com/mattn/gist-vim.git diff --git a/bundle/vim-buffergator b/bundle/vim-buffergator deleted file mode 160000 index dc879d00..00000000 --- a/bundle/vim-buffergator +++ /dev/null @@ -1 +0,0 @@ -Subproject commit dc879d00891af7c53242f44ec1b571ee19bd9016 -- cgit 1.4.1 From 025aee2cc858fe70ed010e8ba1d3c516bf7e1e8e Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 6 May 2012 17:07:00 -0400 Subject: Remove buffergator customization --- .vimrc | 2 -- 1 file changed, 2 deletions(-) diff --git a/.vimrc b/.vimrc index e35db89d..38671a1b 100644 --- a/.vimrc +++ b/.vimrc @@ -91,8 +91,6 @@ let g:syntastic_enable_signs=0 let g:syntastic_auto_loc_list=2 " Custom maps -let g:buffergator_suppress_keymaps=1 - nnoremap ' ` nnoremap ` ' -- cgit 1.4.1 From 007b1682e5ecba5328a8727d7420df01a771cfd5 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Tue, 29 May 2012 22:16:44 -0400 Subject: Wrap text in Markdown files --- .vimrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.vimrc b/.vimrc index 38671a1b..26ff7266 100644 --- a/.vimrc +++ b/.vimrc @@ -66,6 +66,7 @@ filetype plugin indent on autocmd FileType c setlocal sw=4 autocmd FileType cpp setlocal sw=4 autocmd FileType lua setlocal sw=4 +autocmd FileType markdown setlocal tw=72 " C/C++ indent options " :0 Align case with switch -- cgit 1.4.1 From ef064d4f44d0e23c9848cc971b55ab081515edce Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Fri, 22 Jun 2012 23:07:51 -0400 Subject: Remove vim-smartinput --- .gitmodules | 3 --- bundle/vim-smartinput | 1 - 2 files changed, 4 deletions(-) delete mode 160000 bundle/vim-smartinput diff --git a/.gitmodules b/.gitmodules index f28f3a48..93f68cbd 100644 --- a/.gitmodules +++ b/.gitmodules @@ -58,9 +58,6 @@ [submodule "bundle/badwolf"] path = bundle/badwolf url = https://github.com/sjl/badwolf.git -[submodule "bundle/vim-smartinput"] - path = bundle/vim-smartinput - url = https://github.com/kana/vim-smartinput.git [submodule "bundle/webapi-vim"] path = bundle/webapi-vim url = https://github.com/mattn/webapi-vim.git diff --git a/bundle/vim-smartinput b/bundle/vim-smartinput deleted file mode 160000 index 78ab4b3d..00000000 --- a/bundle/vim-smartinput +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 78ab4b3df24fa2753d3dfc1be75ed5a3df1565b8 -- cgit 1.4.1 From 6ca4e82a5297c372fe16eb57469a87fff5035e84 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Mon, 2 Jul 2012 20:21:29 -0400 Subject: Update all the things --- bundle/badwolf | 2 +- bundle/ctrlp.vim | 2 +- bundle/gist-vim | 2 +- bundle/gundo.vim | 2 +- bundle/jellybeans.vim | 2 +- bundle/nerdtree | 2 +- bundle/quicktask | 2 +- bundle/syntastic | 2 +- bundle/vim-fugitive | 2 +- bundle/vim-markdown | 2 +- bundle/vim-powerline | 2 +- bundle/webapi-vim | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/bundle/badwolf b/bundle/badwolf index 01f4915d..03ac89e0 160000 --- a/bundle/badwolf +++ b/bundle/badwolf @@ -1 +1 @@ -Subproject commit 01f4915dda1b09d8eaab766c685d8f8737466e19 +Subproject commit 03ac89e057224c9d3adf000960c62b3293d47ae0 diff --git a/bundle/ctrlp.vim b/bundle/ctrlp.vim index 80bc9cea..5885da54 160000 --- a/bundle/ctrlp.vim +++ b/bundle/ctrlp.vim @@ -1 +1 @@ -Subproject commit 80bc9cea8cc435c9aa9d5ad20b768bb420e4686e +Subproject commit 5885da54beba301be4f7b13f7556e97e570193e5 diff --git a/bundle/gist-vim b/bundle/gist-vim index fa65a4d8..3e02137a 160000 --- a/bundle/gist-vim +++ b/bundle/gist-vim @@ -1 +1 @@ -Subproject commit fa65a4d8d652cb0bcca5a37ac5971ea82f905769 +Subproject commit 3e02137acd8c9fd5235b9afeae8a7675296aef77 diff --git a/bundle/gundo.vim b/bundle/gundo.vim index 7198c51b..4c376a80 160000 --- a/bundle/gundo.vim +++ b/bundle/gundo.vim @@ -1 +1 @@ -Subproject commit 7198c51b5d2b145b5ca4899fda8397e7f68efa77 +Subproject commit 4c376a8061fa335228da420937ce385b847dd56a diff --git a/bundle/jellybeans.vim b/bundle/jellybeans.vim index 2c306097..2737231a 160000 --- a/bundle/jellybeans.vim +++ b/bundle/jellybeans.vim @@ -1 +1 @@ -Subproject commit 2c306097f8320286ae26fd9e45b9c0a8911ec210 +Subproject commit 2737231a45b02e54c53c1912ba06d7e77502cb46 diff --git a/bundle/nerdtree b/bundle/nerdtree index 2cb0fc78..dbeb1947 160000 --- a/bundle/nerdtree +++ b/bundle/nerdtree @@ -1 +1 @@ -Subproject commit 2cb0fc78fb4c7a1db5f51c042a447cc50f09983d +Subproject commit dbeb1947ea986d7cda460f12962cdef5196ef87d diff --git a/bundle/quicktask b/bundle/quicktask index 65bbdc27..cfcb73f8 160000 --- a/bundle/quicktask +++ b/bundle/quicktask @@ -1 +1 @@ -Subproject commit 65bbdc272903c3f71c55b533de2f6a2b6bf2a555 +Subproject commit cfcb73f8df3b7874e6da999aef3d85ba88e6395d diff --git a/bundle/syntastic b/bundle/syntastic index 7fc5246b..52992969 160000 --- a/bundle/syntastic +++ b/bundle/syntastic @@ -1 +1 @@ -Subproject commit 7fc5246be4be9e1034e84266ae567a08e193f764 +Subproject commit 529929691f88e4080548fe662ceff462ede34293 diff --git a/bundle/vim-fugitive b/bundle/vim-fugitive index 765c921e..3b278277 160000 --- a/bundle/vim-fugitive +++ b/bundle/vim-fugitive @@ -1 +1 @@ -Subproject commit 765c921e1f0281963009b3e06a94227a8c0a2408 +Subproject commit 3b278277e0b46711c30a3d1a0083e527b2fb98ed diff --git a/bundle/vim-markdown b/bundle/vim-markdown index 3a991574..9a21f7a6 160000 --- a/bundle/vim-markdown +++ b/bundle/vim-markdown @@ -1 +1 @@ -Subproject commit 3a99157473cb6508d1bc6f5980f928f27f52d65b +Subproject commit 9a21f7a6bc7d5b5cd7a2e78b7893798a67526be8 diff --git a/bundle/vim-powerline b/bundle/vim-powerline index 65e54dde..7f53b5c3 160000 --- a/bundle/vim-powerline +++ b/bundle/vim-powerline @@ -1 +1 @@ -Subproject commit 65e54dde89c73cae4cf089a83f5c26d605dda594 +Subproject commit 7f53b5c3919bde9a4259d0c725d453ef2337a4ed diff --git a/bundle/webapi-vim b/bundle/webapi-vim index 496032d3..96835261 160000 --- a/bundle/webapi-vim +++ b/bundle/webapi-vim @@ -1 +1 @@ -Subproject commit 496032d37f57d896b9f156df4de30a3990e7179d +Subproject commit 968352613d3ea664d7896e7844670a2021ef2104 -- cgit 1.4.1 From d37795df0d711968a9299cdf125e5ad8e97eb6b6 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Tue, 17 Jul 2012 15:18:17 -0400 Subject: Remove vim-space --- .gitmodules | 3 --- bundle/vim-space | 1 - 2 files changed, 4 deletions(-) delete mode 160000 bundle/vim-space diff --git a/.gitmodules b/.gitmodules index 93f68cbd..18fc1255 100644 --- a/.gitmodules +++ b/.gitmodules @@ -40,9 +40,6 @@ [submodule "bundle/gundo.vim"] path = bundle/gundo.vim url = http://github.com/sjl/gundo.vim.git -[submodule "bundle/vim-space"] - path = bundle/vim-space - url = https://github.com/spiiph/vim-space.git [submodule "bundle/tabular"] path = bundle/tabular url = https://github.com/godlygeek/tabular.git diff --git a/bundle/vim-space b/bundle/vim-space deleted file mode 160000 index 9440e388..00000000 --- a/bundle/vim-space +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 9440e388cc75754ab7c58441f3ef965a70a411db -- cgit 1.4.1 From bdf8a45229f515606d3a53f4216259b3447bf918 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 11 Aug 2012 13:55:20 -0400 Subject: Condense indentation exceptions --- .vimrc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.vimrc b/.vimrc index 26ff7266..f5734333 100644 --- a/.vimrc +++ b/.vimrc @@ -63,9 +63,7 @@ set shiftround filetype plugin indent on " Indentation exceptions -autocmd FileType c setlocal sw=4 -autocmd FileType cpp setlocal sw=4 -autocmd FileType lua setlocal sw=4 +autocmd FileType c,cpp,lua setlocal sw=4 autocmd FileType markdown setlocal tw=72 " C/C++ indent options -- cgit 1.4.1 From 7f0cebdfbf834823c0b52428bf78971ad8d192c4 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 11 Aug 2012 18:39:10 -0400 Subject: Add VimClojure --- .gitmodules | 3 +++ bundle/VimClojure | 1 + 2 files changed, 4 insertions(+) create mode 160000 bundle/VimClojure diff --git a/.gitmodules b/.gitmodules index 18fc1255..f7d5b240 100644 --- a/.gitmodules +++ b/.gitmodules @@ -58,3 +58,6 @@ [submodule "bundle/webapi-vim"] path = bundle/webapi-vim url = https://github.com/mattn/webapi-vim.git +[submodule "bundle/VimClojure"] + path = bundle/VimClojure + url = https://github.com/vim-scripts/VimClojure.git diff --git a/bundle/VimClojure b/bundle/VimClojure new file mode 160000 index 00000000..da2683b9 --- /dev/null +++ b/bundle/VimClojure @@ -0,0 +1 @@ +Subproject commit da2683b9069e01c133f0c0129386fd6dc053019c -- cgit 1.4.1 From 295ac84108960d851c10211728d1e89251e35f4c Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 12 Aug 2012 16:42:35 -0400 Subject: Add refheap.vim --- .gitmodules | 3 +++ bundle/refheap.vim | 1 + 2 files changed, 4 insertions(+) create mode 160000 bundle/refheap.vim diff --git a/.gitmodules b/.gitmodules index f7d5b240..92f2b4e3 100644 --- a/.gitmodules +++ b/.gitmodules @@ -61,3 +61,6 @@ [submodule "bundle/VimClojure"] path = bundle/VimClojure url = https://github.com/vim-scripts/VimClojure.git +[submodule "bundle/refheap.vim"] + path = bundle/refheap.vim + url = https://github.com/Raynes/refheap.vim.git diff --git a/bundle/refheap.vim b/bundle/refheap.vim new file mode 160000 index 00000000..2da521ad --- /dev/null +++ b/bundle/refheap.vim @@ -0,0 +1 @@ +Subproject commit 2da521ad0c4b722e3064873dc19c103d6b82c16e -- cgit 1.4.1 From 44fb0efb6987fbc30aea453fc4bd0f07a00244d0 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 12 Aug 2012 16:43:24 -0400 Subject: Update itchy.vim --- bundle/itchy.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/itchy.vim b/bundle/itchy.vim index 10218ccb..48badd9c 160000 --- a/bundle/itchy.vim +++ b/bundle/itchy.vim @@ -1 +1 @@ -Subproject commit 10218ccbc687a5d0db42a29ddb6ae9ed0f89cb8e +Subproject commit 48badd9cf60664d51ee403e62ddfb6340642a803 -- cgit 1.4.1 From 701a9a9b56158e4b4ec4e19b144ad05ab32cb9b4 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Fri, 17 Aug 2012 14:36:15 -0400 Subject: Update itchy.vim --- bundle/itchy.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/itchy.vim b/bundle/itchy.vim index 48badd9c..13bf38ff 160000 --- a/bundle/itchy.vim +++ b/bundle/itchy.vim @@ -1 +1 @@ -Subproject commit 48badd9cf60664d51ee403e62ddfb6340642a803 +Subproject commit 13bf38ff895f7c32befb78b9505c478b77545329 -- cgit 1.4.1 From f02bdb3a777194e8fc0fe4d1b500566776ea1862 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Fri, 31 Aug 2012 15:35:21 -0400 Subject: Add base16-vim --- .gitmodules | 3 +++ bundle/base16-vim | 1 + 2 files changed, 4 insertions(+) create mode 160000 bundle/base16-vim diff --git a/.gitmodules b/.gitmodules index 92f2b4e3..8d1af4f1 100644 --- a/.gitmodules +++ b/.gitmodules @@ -64,3 +64,6 @@ [submodule "bundle/refheap.vim"] path = bundle/refheap.vim url = https://github.com/Raynes/refheap.vim.git +[submodule "bundle/base16-vim"] + path = bundle/base16-vim + url = https://github.com/chriskempson/base16-vim.git diff --git a/bundle/base16-vim b/bundle/base16-vim new file mode 160000 index 00000000..9fe14738 --- /dev/null +++ b/bundle/base16-vim @@ -0,0 +1 @@ +Subproject commit 9fe14738c039f7f3f93aa5301e4e574690cc560d -- cgit 1.4.1 From b9b62fbedc17d97d4371abdda88e85cfb7528059 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Fri, 31 Aug 2012 15:35:59 -0400 Subject: Ignore .netrwhist --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..a0e76af9 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.netrwhist -- cgit 1.4.1 From 5a0abc35ae346c6de13c5eb8f3a790ca3c18912f Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 29 Sep 2012 11:38:28 -0400 Subject: Disable GUI dialogs --- .vimrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index f5734333..72b63d23 100644 --- a/.vimrc +++ b/.vimrc @@ -46,7 +46,8 @@ if has('mouse') endif " GUI options -set guioptions-=mrLtT " Disable tear-off menus, toolbar, scrollbars +set guioptions-=mrLtT " Disable menus, toolbar, scrollbars +set guioptions+=c " Disable GUI dialogs set guifont=Monospace\ 9 set browsedir=buffer " Open dialog starts in working directory let g:Powerline_symbols = 'fancy' -- cgit 1.4.1 From d2442fe22d087ca3b98a2ff55291f167222f57dc Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 3 Feb 2013 23:06:41 -0500 Subject: Ignore plugin/private.vim --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index a0e76af9..532147d2 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ .netrwhist +plugin/private.vim -- cgit 1.4.1 From 97df0285ba78e7ba7bc78f7f2775b13365dbd185 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 3 Feb 2013 23:08:19 -0500 Subject: Update base16 and refheap --- bundle/base16-vim | 2 +- bundle/refheap.vim | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bundle/base16-vim b/bundle/base16-vim index 9fe14738..395403d9 160000 --- a/bundle/base16-vim +++ b/bundle/base16-vim @@ -1 +1 @@ -Subproject commit 9fe14738c039f7f3f93aa5301e4e574690cc560d +Subproject commit 395403d92fbf5f79a7f90d07f083ed238dc92f25 diff --git a/bundle/refheap.vim b/bundle/refheap.vim index 2da521ad..0780087c 160000 --- a/bundle/refheap.vim +++ b/bundle/refheap.vim @@ -1 +1 @@ -Subproject commit 2da521ad0c4b722e3064873dc19c103d6b82c16e +Subproject commit 0780087c5894df5cb89381dbac224c4604112b47 -- cgit 1.4.1 From 78a3fd6fe8730d570a2e8fe41bb4d7dba4a02c35 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Tue, 12 Mar 2013 17:40:48 -0400 Subject: Remove vim-powerline --- .gitmodules | 3 --- bundle/vim-powerline | 1 - 2 files changed, 4 deletions(-) delete mode 160000 bundle/vim-powerline diff --git a/.gitmodules b/.gitmodules index 8d1af4f1..20d70b82 100644 --- a/.gitmodules +++ b/.gitmodules @@ -28,9 +28,6 @@ [submodule "bundle/quicktask"] path = bundle/quicktask url = https://github.com/aaronbieber/quicktask.git -[submodule "bundle/vim-powerline"] - path = bundle/vim-powerline - url = https://github.com/Lokaltog/vim-powerline.git [submodule "bundle/syntastic"] path = bundle/syntastic url = https://github.com/scrooloose/syntastic.git diff --git a/bundle/vim-powerline b/bundle/vim-powerline deleted file mode 160000 index 7f53b5c3..00000000 --- a/bundle/vim-powerline +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 7f53b5c3919bde9a4259d0c725d453ef2337a4ed -- cgit 1.4.1 From 56714bae86092ff1af5f5838686da2286d3ad2ca Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Tue, 12 Mar 2013 18:10:03 -0400 Subject: Switch to powerline Which I'm not going to bother configuring because it thinks it's all fancy and for other things that aren't Vim so it stores its config file in ~/.config which I keep in a different repo and I only want to use it for Vim so fuck you, Powerline. --- .gitmodules | 3 +++ .vimrc | 6 ++++-- bundle/powerline | 1 + 3 files changed, 8 insertions(+), 2 deletions(-) create mode 160000 bundle/powerline diff --git a/.gitmodules b/.gitmodules index 20d70b82..159a24ab 100644 --- a/.gitmodules +++ b/.gitmodules @@ -64,3 +64,6 @@ [submodule "bundle/base16-vim"] path = bundle/base16-vim url = https://github.com/chriskempson/base16-vim.git +[submodule "bundle/powerline"] + path = bundle/powerline + url = https://github.com/Lokaltog/powerline.git diff --git a/.vimrc b/.vimrc index 72b63d23..7177f401 100644 --- a/.vimrc +++ b/.vimrc @@ -1,9 +1,12 @@ -set nocp " No child-porn here :P +set nocp " Load pathogen runtime bundle/vim-pathogen/autoload/pathogen.vim call pathogen#infect() +" Load powerline +set rtp+=~/.vim/bundle/powerline/powerline/bindings/vim + " Remap leader to , noremap \ , let mapleader = "," @@ -50,7 +53,6 @@ set guioptions-=mrLtT " Disable menus, toolbar, scrollbars set guioptions+=c " Disable GUI dialogs set guifont=Monospace\ 9 set browsedir=buffer " Open dialog starts in working directory -let g:Powerline_symbols = 'fancy' " Jump to the last cursor position when opening au BufReadPost * if &filetype !~ '^git\c' && line("'\"") > 0 && line("'\"") <= line("$") diff --git a/bundle/powerline b/bundle/powerline new file mode 160000 index 00000000..0a5a09db --- /dev/null +++ b/bundle/powerline @@ -0,0 +1 @@ +Subproject commit 0a5a09db122e483d4c0ea4b8a5869343a1e4955d -- cgit 1.4.1 From 8e6cb24d66a498ddfa0c18f684b68cea6fb6f22a Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Tue, 12 Mar 2013 18:22:02 -0400 Subject: Hide mode from below statusline --- .vimrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.vimrc b/.vimrc index 7177f401..8673a644 100644 --- a/.vimrc +++ b/.vimrc @@ -38,6 +38,7 @@ set foldmethod=syntax set foldlevel=1000 set laststatus=2 " Always show statusline +set noshowmode set statusline=%<%f\ %h%m%r%{fugitive#statusline()}%=%-14.(%l,%c%V%)\ %P syntax on -- cgit 1.4.1 From c484005bf1761f3489e18ff62c69d0f89bf7e728 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Thu, 14 Mar 2013 00:00:05 -0400 Subject: Update base16-vim It's still crap --- bundle/base16-vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/base16-vim b/bundle/base16-vim index 395403d9..88144b62 160000 --- a/bundle/base16-vim +++ b/bundle/base16-vim @@ -1 +1 @@ -Subproject commit 395403d92fbf5f79a7f90d07f083ed238dc92f25 +Subproject commit 88144b6205969158dfb4802e3050979b35bccdb2 -- cgit 1.4.1 From ef734bdfa16b360f15e387ccfd14d4d603f263f5 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 24 Mar 2013 14:08:11 -0400 Subject: Add paredit.vim --- .gitmodules | 3 +++ bundle/paredit.vim | 1 + 2 files changed, 4 insertions(+) create mode 160000 bundle/paredit.vim diff --git a/.gitmodules b/.gitmodules index 159a24ab..526c0e20 100644 --- a/.gitmodules +++ b/.gitmodules @@ -67,3 +67,6 @@ [submodule "bundle/powerline"] path = bundle/powerline url = https://github.com/Lokaltog/powerline.git +[submodule "bundle/paredit.vim"] + path = bundle/paredit.vim + url = https://github.com/vim-scripts/paredit.vim.git diff --git a/bundle/paredit.vim b/bundle/paredit.vim new file mode 160000 index 00000000..a8b5c979 --- /dev/null +++ b/bundle/paredit.vim @@ -0,0 +1 @@ +Subproject commit a8b5c979653931ef28794ce6978a185fc263bdb5 -- cgit 1.4.1 From 239f760b07f4644d1648c06bc73e39df0344bc53 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Tue, 26 Mar 2013 20:39:37 -0400 Subject: Replace nerdcommenter with vim-commentary --- .gitmodules | 6 +++--- bundle/nerdcommenter | 1 - bundle/vim-commentary | 1 + 3 files changed, 4 insertions(+), 4 deletions(-) delete mode 160000 bundle/nerdcommenter create mode 160000 bundle/vim-commentary diff --git a/.gitmodules b/.gitmodules index 526c0e20..912ff471 100644 --- a/.gitmodules +++ b/.gitmodules @@ -13,9 +13,6 @@ [submodule "bundle/vim-fugitive"] path = bundle/vim-fugitive url = https://github.com/tpope/vim-fugitive.git -[submodule "bundle/nerdcommenter"] - path = bundle/nerdcommenter - url = https://github.com/ddollar/nerdcommenter.git [submodule "bundle/nerdtree"] path = bundle/nerdtree url = https://github.com/scrooloose/nerdtree.git @@ -70,3 +67,6 @@ [submodule "bundle/paredit.vim"] path = bundle/paredit.vim url = https://github.com/vim-scripts/paredit.vim.git +[submodule "bundle/vim-commentary"] + path = bundle/vim-commentary + url = https://github.com/tpope/vim-commentary.git diff --git a/bundle/nerdcommenter b/bundle/nerdcommenter deleted file mode 160000 index 093e6b3f..00000000 --- a/bundle/nerdcommenter +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 093e6b3f765b728c129a4271f1f34bb70e671f08 diff --git a/bundle/vim-commentary b/bundle/vim-commentary new file mode 160000 index 00000000..a3ae0df1 --- /dev/null +++ b/bundle/vim-commentary @@ -0,0 +1 @@ +Subproject commit a3ae0df1d9e13941e9e8086637055841ce93f7bd -- cgit 1.4.1 From 3efda1b35c9c0d1d3a7727c3d6a2c63dd0acc02c Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Tue, 23 Apr 2013 17:52:57 -0400 Subject: Switch to base16-default colorscheme --- .vimrc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index 8673a644..653459f0 100644 --- a/.vimrc +++ b/.vimrc @@ -42,7 +42,9 @@ set noshowmode set statusline=%<%f\ %h%m%r%{fugitive#statusline()}%=%-14.(%l,%c%V%)\ %P syntax on -colorscheme Tomorrow-Night +set background=dark +"let base16colorspace=256 +colorscheme base16-default " Enable mouse in terminals if has('mouse') -- cgit 1.4.1 From fd2733a94ff55898e46868602b98daac2f1be0b3 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Tue, 23 Apr 2013 18:03:06 -0400 Subject: Remove unused plugins --- .gitmodules | 15 --------------- bundle/badwolf | 1 - bundle/jellybeans.vim | 1 - bundle/paredit.vim | 1 - bundle/quicktask | 1 - bundle/vim-colors-solarized | 1 - 6 files changed, 20 deletions(-) delete mode 160000 bundle/badwolf delete mode 160000 bundle/jellybeans.vim delete mode 160000 bundle/paredit.vim delete mode 160000 bundle/quicktask delete mode 160000 bundle/vim-colors-solarized diff --git a/.gitmodules b/.gitmodules index 912ff471..87873438 100644 --- a/.gitmodules +++ b/.gitmodules @@ -22,15 +22,9 @@ [submodule "bundle/ooc.vim"] path = bundle/ooc.vim url = git://github.com/programble/ooc.vim.git -[submodule "bundle/quicktask"] - path = bundle/quicktask - url = https://github.com/aaronbieber/quicktask.git [submodule "bundle/syntastic"] path = bundle/syntastic url = https://github.com/scrooloose/syntastic.git -[submodule "bundle/jellybeans.vim"] - path = bundle/jellybeans.vim - url = https://github.com/nanotech/jellybeans.vim.git [submodule "bundle/gundo.vim"] path = bundle/gundo.vim url = http://github.com/sjl/gundo.vim.git @@ -43,12 +37,6 @@ [submodule "bundle/itchy.vim"] path = bundle/itchy.vim url = git://github.com/programble/itchy.vim.git -[submodule "bundle/vim-colors-solarized"] - path = bundle/vim-colors-solarized - url = https://github.com/altercation/vim-colors-solarized.git -[submodule "bundle/badwolf"] - path = bundle/badwolf - url = https://github.com/sjl/badwolf.git [submodule "bundle/webapi-vim"] path = bundle/webapi-vim url = https://github.com/mattn/webapi-vim.git @@ -64,9 +52,6 @@ [submodule "bundle/powerline"] path = bundle/powerline url = https://github.com/Lokaltog/powerline.git -[submodule "bundle/paredit.vim"] - path = bundle/paredit.vim - url = https://github.com/vim-scripts/paredit.vim.git [submodule "bundle/vim-commentary"] path = bundle/vim-commentary url = https://github.com/tpope/vim-commentary.git diff --git a/bundle/badwolf b/bundle/badwolf deleted file mode 160000 index 03ac89e0..00000000 --- a/bundle/badwolf +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 03ac89e057224c9d3adf000960c62b3293d47ae0 diff --git a/bundle/jellybeans.vim b/bundle/jellybeans.vim deleted file mode 160000 index 2737231a..00000000 --- a/bundle/jellybeans.vim +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 2737231a45b02e54c53c1912ba06d7e77502cb46 diff --git a/bundle/paredit.vim b/bundle/paredit.vim deleted file mode 160000 index a8b5c979..00000000 --- a/bundle/paredit.vim +++ /dev/null @@ -1 +0,0 @@ -Subproject commit a8b5c979653931ef28794ce6978a185fc263bdb5 diff --git a/bundle/quicktask b/bundle/quicktask deleted file mode 160000 index cfcb73f8..00000000 --- a/bundle/quicktask +++ /dev/null @@ -1 +0,0 @@ -Subproject commit cfcb73f8df3b7874e6da999aef3d85ba88e6395d diff --git a/bundle/vim-colors-solarized b/bundle/vim-colors-solarized deleted file mode 160000 index 528a59f2..00000000 --- a/bundle/vim-colors-solarized +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 528a59f26d12278698bb946f8fb82a63711eec21 -- cgit 1.4.1 From 9ee88bf07ab4eb811c55d9ec27fa98e48449699c Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Wed, 15 May 2013 16:23:17 -0400 Subject: Add vim-gitgutter --- .gitmodules | 3 +++ .vimrc | 27 +++++++++++++++------------ bundle/vim-gitgutter | 1 + 3 files changed, 19 insertions(+), 12 deletions(-) create mode 160000 bundle/vim-gitgutter diff --git a/.gitmodules b/.gitmodules index 87873438..e7e9439c 100644 --- a/.gitmodules +++ b/.gitmodules @@ -55,3 +55,6 @@ [submodule "bundle/vim-commentary"] path = bundle/vim-commentary url = https://github.com/tpope/vim-commentary.git +[submodule "bundle/vim-gitgutter"] + path = bundle/vim-gitgutter + url = https://github.com/airblade/vim-gitgutter.git diff --git a/.vimrc b/.vimrc index 653459f0..efda8070 100644 --- a/.vimrc +++ b/.vimrc @@ -99,12 +99,11 @@ let g:syntastic_auto_loc_list=2 nnoremap ' ` nnoremap ` ' -" Clear search highlights -nmap n :silent :nohlsearch +nmap n :nohlsearch -nmap s :set list! +nmap s :set list! -nmap z :set spell! +nmap z :set spell! nmap p "+p nmap P "+P @@ -116,18 +115,22 @@ nmap D "+D nmap Y y$ " Insert hard tab -imap +imap nmap Q gq -nmap b :CtrlPBuffer -nmap e :CtrlP +nmap b :CtrlPBuffer +nmap e :CtrlP -nmap gs :Gstatus -nmap gc :Gcommit -nmap gp :Git push +nmap gs :Gstatus +nmap gc :Gcommit +nmap gp :Git push -nnoremap u :GundoToggle +nmap gg :GitGutterToggle +nmap gh GitGutterNextHunk +nmap gH GitGutterPrevHunk + +nmap u :GundoToggle " Toggle relative/absolute numbers function! NumberToggle() @@ -138,7 +141,7 @@ function! NumberToggle() endif endfunc -nnoremap :call NumberToggle() +nmap :call NumberToggle() " Custom commands command! W :w diff --git a/bundle/vim-gitgutter b/bundle/vim-gitgutter new file mode 160000 index 00000000..ff031d02 --- /dev/null +++ b/bundle/vim-gitgutter @@ -0,0 +1 @@ +Subproject commit ff031d022f2123353bc93a3aa97290287c10a287 -- cgit 1.4.1 From 1e6f6d84012b789adfcc3c729446663ca7c12280 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Wed, 15 May 2013 16:42:20 -0400 Subject: Use long names for all settings --- .vimrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vimrc b/.vimrc index efda8070..d06533cf 100644 --- a/.vimrc +++ b/.vimrc @@ -23,9 +23,9 @@ set ignorecase set smartcase set autoindent set smartindent -set nu +set number set spell -set cc=80 +set colorcolumn=80 set title set shortmess=atI set visualbell t_vb= -- cgit 1.4.1 From 8a48f4b4768ca942c44b50083f427b3be908adb9 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Wed, 15 May 2013 16:55:37 -0400 Subject: Remove tabular --- .gitmodules | 3 --- bundle/tabular | 1 - 2 files changed, 4 deletions(-) delete mode 160000 bundle/tabular diff --git a/.gitmodules b/.gitmodules index e7e9439c..0904cec5 100644 --- a/.gitmodules +++ b/.gitmodules @@ -28,9 +28,6 @@ [submodule "bundle/gundo.vim"] path = bundle/gundo.vim url = http://github.com/sjl/gundo.vim.git -[submodule "bundle/tabular"] - path = bundle/tabular - url = https://github.com/godlygeek/tabular.git [submodule "bundle/vim-markdown"] path = bundle/vim-markdown url = https://github.com/tpope/vim-markdown.git diff --git a/bundle/tabular b/bundle/tabular deleted file mode 160000 index ad2a5a1d..00000000 --- a/bundle/tabular +++ /dev/null @@ -1 +0,0 @@ -Subproject commit ad2a5a1d54443ab27f1282c5617f55b8e0819623 -- cgit 1.4.1 From e4f4bbc2d9fcbcbc81d61c2edcfc34b57eab5206 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 18 May 2013 14:30:59 -0400 Subject: Do not run gitgutter eagerly --- .vimrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.vimrc b/.vimrc index d06533cf..f0ea487f 100644 --- a/.vimrc +++ b/.vimrc @@ -95,6 +95,8 @@ let g:syntastic_check_on_open=1 let g:syntastic_enable_signs=0 let g:syntastic_auto_loc_list=2 +let g:gitgutter_eager = 0 + " Custom maps nnoremap ' ` nnoremap ` ' -- cgit 1.4.1 From 87d9f9b7097fb0cfe083876dd62efe40718cf322 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Thu, 23 May 2013 15:36:29 -0400 Subject: Replace VimClojure with vim-clojure-static --- .gitmodules | 6 +++--- bundle/VimClojure | 1 - bundle/vim-clojure-static | 1 + 3 files changed, 4 insertions(+), 4 deletions(-) delete mode 160000 bundle/VimClojure create mode 160000 bundle/vim-clojure-static diff --git a/.gitmodules b/.gitmodules index 0904cec5..9324cb0b 100644 --- a/.gitmodules +++ b/.gitmodules @@ -37,9 +37,6 @@ [submodule "bundle/webapi-vim"] path = bundle/webapi-vim url = https://github.com/mattn/webapi-vim.git -[submodule "bundle/VimClojure"] - path = bundle/VimClojure - url = https://github.com/vim-scripts/VimClojure.git [submodule "bundle/refheap.vim"] path = bundle/refheap.vim url = https://github.com/Raynes/refheap.vim.git @@ -55,3 +52,6 @@ [submodule "bundle/vim-gitgutter"] path = bundle/vim-gitgutter url = https://github.com/airblade/vim-gitgutter.git +[submodule "bundle/vim-clojure-static"] + path = bundle/vim-clojure-static + url = https://github.com/guns/vim-clojure-static.git diff --git a/bundle/VimClojure b/bundle/VimClojure deleted file mode 160000 index da2683b9..00000000 --- a/bundle/VimClojure +++ /dev/null @@ -1 +0,0 @@ -Subproject commit da2683b9069e01c133f0c0129386fd6dc053019c diff --git a/bundle/vim-clojure-static b/bundle/vim-clojure-static new file mode 160000 index 00000000..949adf73 --- /dev/null +++ b/bundle/vim-clojure-static @@ -0,0 +1 @@ +Subproject commit 949adf73ae1a82c48cd951677c055bd38a30af99 -- cgit 1.4.1 From 635a9d139e874e8dfd2ec120069dbe6295b47b70 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Thu, 23 May 2013 15:38:10 -0400 Subject: Remove vim-clojure-static --- .gitmodules | 3 --- bundle/vim-clojure-static | 1 - 2 files changed, 4 deletions(-) delete mode 160000 bundle/vim-clojure-static diff --git a/.gitmodules b/.gitmodules index 9324cb0b..96657fcc 100644 --- a/.gitmodules +++ b/.gitmodules @@ -52,6 +52,3 @@ [submodule "bundle/vim-gitgutter"] path = bundle/vim-gitgutter url = https://github.com/airblade/vim-gitgutter.git -[submodule "bundle/vim-clojure-static"] - path = bundle/vim-clojure-static - url = https://github.com/guns/vim-clojure-static.git diff --git a/bundle/vim-clojure-static b/bundle/vim-clojure-static deleted file mode 160000 index 949adf73..00000000 --- a/bundle/vim-clojure-static +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 949adf73ae1a82c48cd951677c055bd38a30af99 -- cgit 1.4.1 From b5122b2ebd53fbc958c5bcaed151f9e2f7b95f31 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Fri, 24 May 2013 20:24:10 -0400 Subject: Indent compojure correctly --- .vimrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.vimrc b/.vimrc index f0ea487f..b0983a87 100644 --- a/.vimrc +++ b/.vimrc @@ -78,6 +78,9 @@ autocmd FileType markdown setlocal tw=72 " g0 Align "public:" and friends to class set cinoptions=:0,l1,g0 +" Indent Compojure correctly +autocmd FileType clojure set lispwords+=GET,POST,PUT,DELETE + " Better tab-complete when opening set wildmenu set wildmode=list:longest -- cgit 1.4.1 From 9ae89078d6834ca723f850efac0b24bdc32f5401 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Fri, 7 Jun 2013 23:52:19 -0400 Subject: Switch to my own fork of base16-vim --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 96657fcc..54db0945 100644 --- a/.gitmodules +++ b/.gitmodules @@ -42,7 +42,7 @@ url = https://github.com/Raynes/refheap.vim.git [submodule "bundle/base16-vim"] path = bundle/base16-vim - url = https://github.com/chriskempson/base16-vim.git + url = https://github.com/programble/base16-vim.git [submodule "bundle/powerline"] path = bundle/powerline url = https://github.com/Lokaltog/powerline.git -- cgit 1.4.1 From 95091d8eb4c503695ec988255c5ae17847552110 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 8 Jun 2013 15:07:45 -0400 Subject: Update base16-vim --- bundle/base16-vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/base16-vim b/bundle/base16-vim index 88144b62..6db489a7 160000 --- a/bundle/base16-vim +++ b/bundle/base16-vim @@ -1 +1 @@ -Subproject commit 88144b6205969158dfb4802e3050979b35bccdb2 +Subproject commit 6db489a71dc0f588d21fbe5e40a257a307bac108 -- cgit 1.4.1 From 688f002dd23aa823bdb9fb209b7ff19b4e7d4a42 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 17 Aug 2013 19:44:16 -0400 Subject: Add vim-ragtag --- .gitmodules | 3 +++ bundle/vim-ragtag | 1 + 2 files changed, 4 insertions(+) create mode 160000 bundle/vim-ragtag diff --git a/.gitmodules b/.gitmodules index 54db0945..275ccfef 100644 --- a/.gitmodules +++ b/.gitmodules @@ -52,3 +52,6 @@ [submodule "bundle/vim-gitgutter"] path = bundle/vim-gitgutter url = https://github.com/airblade/vim-gitgutter.git +[submodule "bundle/vim-ragtag"] + path = bundle/vim-ragtag + url = https://github.com/tpope/vim-ragtag.git diff --git a/bundle/vim-ragtag b/bundle/vim-ragtag new file mode 160000 index 00000000..1a93cbb1 --- /dev/null +++ b/bundle/vim-ragtag @@ -0,0 +1 @@ +Subproject commit 1a93cbb14f537c001a52a43b94309d6c625b5953 -- cgit 1.4.1 From e90b29b8e432a2d218764cb3f63d28b148cc2be9 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Thu, 5 Sep 2013 16:55:05 -0400 Subject: Only set colorscheme for gvim --- .vimrc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.vimrc b/.vimrc index b0983a87..82cec4e3 100644 --- a/.vimrc +++ b/.vimrc @@ -43,8 +43,9 @@ set statusline=%<%f\ %h%m%r%{fugitive#statusline()}%=%-14.(%l,%c%V%)\ %P syntax on set background=dark -"let base16colorspace=256 -colorscheme base16-default +if has('gui_running') + colorscheme base16-default +endif " Enable mouse in terminals if has('mouse') -- cgit 1.4.1 From 847d68d79446ff48243ae476022b2a64571557e9 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Fri, 6 Sep 2013 18:01:06 -0400 Subject: Disable some options in terminals --- .vimrc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.vimrc b/.vimrc index 82cec4e3..eb2ca10a 100644 --- a/.vimrc +++ b/.vimrc @@ -52,6 +52,13 @@ if has('mouse') set mouse=a endif +" Less clutter in terminals +if !has('gui_running') + set nospell + set nocursorline + set colorcolumn= +endif + " GUI options set guioptions-=mrLtT " Disable menus, toolbar, scrollbars set guioptions+=c " Disable GUI dialogs -- cgit 1.4.1 From bb958763b58db90e7d4586831a07758b3be9a22b Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 2 Nov 2013 16:53:26 -0400 Subject: Remove powerline --- .gitmodules | 3 --- .vimrc | 3 --- bundle/powerline | 1 - 3 files changed, 7 deletions(-) delete mode 160000 bundle/powerline diff --git a/.gitmodules b/.gitmodules index 275ccfef..f55ad511 100644 --- a/.gitmodules +++ b/.gitmodules @@ -43,9 +43,6 @@ [submodule "bundle/base16-vim"] path = bundle/base16-vim url = https://github.com/programble/base16-vim.git -[submodule "bundle/powerline"] - path = bundle/powerline - url = https://github.com/Lokaltog/powerline.git [submodule "bundle/vim-commentary"] path = bundle/vim-commentary url = https://github.com/tpope/vim-commentary.git diff --git a/.vimrc b/.vimrc index eb2ca10a..c6b9ab1d 100644 --- a/.vimrc +++ b/.vimrc @@ -4,9 +4,6 @@ set nocp runtime bundle/vim-pathogen/autoload/pathogen.vim call pathogen#infect() -" Load powerline -set rtp+=~/.vim/bundle/powerline/powerline/bindings/vim - " Remap leader to , noremap \ , let mapleader = "," diff --git a/bundle/powerline b/bundle/powerline deleted file mode 160000 index 0a5a09db..00000000 --- a/bundle/powerline +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 0a5a09db122e483d4c0ea4b8a5869343a1e4955d -- cgit 1.4.1 From c7349ebbbc9d621c92f3df623e7204e571e1dcb9 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 2 Nov 2013 17:33:26 -0400 Subject: Add Airline --- .gitmodules | 3 +++ .vimrc | 4 ++++ bundle/vim-airline | 1 + 3 files changed, 8 insertions(+) create mode 160000 bundle/vim-airline diff --git a/.gitmodules b/.gitmodules index f55ad511..39e4d905 100644 --- a/.gitmodules +++ b/.gitmodules @@ -52,3 +52,6 @@ [submodule "bundle/vim-ragtag"] path = bundle/vim-ragtag url = https://github.com/tpope/vim-ragtag.git +[submodule "bundle/vim-airline"] + path = bundle/vim-airline + url = https://github.com/bling/vim-airline.git diff --git a/.vimrc b/.vimrc index c6b9ab1d..86d2c328 100644 --- a/.vimrc +++ b/.vimrc @@ -38,6 +38,10 @@ set laststatus=2 " Always show statusline set noshowmode set statusline=%<%f\ %h%m%r%{fugitive#statusline()}%=%-14.(%l,%c%V%)\ %P +" Airline config +let g:airline_left_sep = '' +let g:airline_right_sep = '' + syntax on set background=dark if has('gui_running') diff --git a/bundle/vim-airline b/bundle/vim-airline new file mode 160000 index 00000000..99b7cdf3 --- /dev/null +++ b/bundle/vim-airline @@ -0,0 +1 @@ +Subproject commit 99b7cdf334c7e60498b037f45273cc02f85ab6fe -- cgit 1.4.1 From 3ae05551e43cba606ba76862c27255601ce3d2d2 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 2 Nov 2013 17:43:04 -0400 Subject: Add tagbar --- .gitmodules | 3 +++ bundle/tagbar | 1 + 2 files changed, 4 insertions(+) create mode 160000 bundle/tagbar diff --git a/.gitmodules b/.gitmodules index 39e4d905..05474c0d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -55,3 +55,6 @@ [submodule "bundle/vim-airline"] path = bundle/vim-airline url = https://github.com/bling/vim-airline.git +[submodule "bundle/tagbar"] + path = bundle/tagbar + url = https://github.com/majutsushi/tagbar.git diff --git a/bundle/tagbar b/bundle/tagbar new file mode 160000 index 00000000..2e2ba2ea --- /dev/null +++ b/bundle/tagbar @@ -0,0 +1 @@ +Subproject commit 2e2ba2eab252b05051d4ca7cd87b2fcb23a411d6 -- cgit 1.4.1 From 98980b8f6896916e6341ff1506fea0a02e70b0df Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 2 Nov 2013 18:26:20 -0400 Subject: Replace vim-gitgutter with vim-signify --- .gitmodules | 6 +++--- .vimrc | 15 ++++++++++----- bundle/vim-gitgutter | 1 - bundle/vim-signify | 1 + 4 files changed, 14 insertions(+), 9 deletions(-) delete mode 160000 bundle/vim-gitgutter create mode 160000 bundle/vim-signify diff --git a/.gitmodules b/.gitmodules index 05474c0d..c7c86511 100644 --- a/.gitmodules +++ b/.gitmodules @@ -46,9 +46,6 @@ [submodule "bundle/vim-commentary"] path = bundle/vim-commentary url = https://github.com/tpope/vim-commentary.git -[submodule "bundle/vim-gitgutter"] - path = bundle/vim-gitgutter - url = https://github.com/airblade/vim-gitgutter.git [submodule "bundle/vim-ragtag"] path = bundle/vim-ragtag url = https://github.com/tpope/vim-ragtag.git @@ -58,3 +55,6 @@ [submodule "bundle/tagbar"] path = bundle/tagbar url = https://github.com/majutsushi/tagbar.git +[submodule "bundle/vim-signify"] + path = bundle/vim-signify + url = https://github.com/mhinz/vim-signify.git diff --git a/.vimrc b/.vimrc index 86d2c328..ad031ff7 100644 --- a/.vimrc +++ b/.vimrc @@ -38,10 +38,6 @@ set laststatus=2 " Always show statusline set noshowmode set statusline=%<%f\ %h%m%r%{fugitive#statusline()}%=%-14.(%l,%c%V%)\ %P -" Airline config -let g:airline_left_sep = '' -let g:airline_right_sep = '' - syntax on set background=dark if has('gui_running') @@ -102,12 +98,21 @@ runtime macros/matchit.vim autocmd InsertEnter * setlocal nolist autocmd InsertLeave * setlocal list +" Airline config +let g:airline_left_sep = '' +let g:airline_right_sep = '' + " Syntastic options let g:syntastic_check_on_open=1 let g:syntastic_enable_signs=0 let g:syntastic_auto_loc_list=2 -let g:gitgutter_eager = 0 +" Signify +let g:signify_vcs_list = ['git'] +let g:signify_sign_overwrite = 1 +let g:signify_sign_change = '~' + +let g:airline#extensions#hunks#non_zero_only = 1 " Custom maps nnoremap ' ` diff --git a/bundle/vim-gitgutter b/bundle/vim-gitgutter deleted file mode 160000 index ff031d02..00000000 --- a/bundle/vim-gitgutter +++ /dev/null @@ -1 +0,0 @@ -Subproject commit ff031d022f2123353bc93a3aa97290287c10a287 diff --git a/bundle/vim-signify b/bundle/vim-signify new file mode 160000 index 00000000..ec4d88eb --- /dev/null +++ b/bundle/vim-signify @@ -0,0 +1 @@ +Subproject commit ec4d88eb1c5dda97db0fc9e4ddbf33e11faacc39 -- cgit 1.4.1 From af446b5125ffbeb9478f34190bb6038980c636fa Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 3 Nov 2013 00:32:35 -0400 Subject: Disable Airline whitespace extension --- .gitmodules | 3 +++ .vimrc | 2 ++ bundle/jellybeans.vim | 1 + 3 files changed, 6 insertions(+) create mode 160000 bundle/jellybeans.vim diff --git a/.gitmodules b/.gitmodules index c7c86511..f8ce5bf2 100644 --- a/.gitmodules +++ b/.gitmodules @@ -58,3 +58,6 @@ [submodule "bundle/vim-signify"] path = bundle/vim-signify url = https://github.com/mhinz/vim-signify.git +[submodule "bundle/jellybeans.vim"] + path = bundle/jellybeans.vim + url = https://github.com/programble/jellybeans.vim diff --git a/.vimrc b/.vimrc index ad031ff7..27f9114c 100644 --- a/.vimrc +++ b/.vimrc @@ -114,6 +114,8 @@ let g:signify_sign_change = '~' let g:airline#extensions#hunks#non_zero_only = 1 +let g:airline#extensions#whitespace#enabled = 0 + " Custom maps nnoremap ' ` nnoremap ` ' diff --git a/bundle/jellybeans.vim b/bundle/jellybeans.vim new file mode 160000 index 00000000..c173b85f --- /dev/null +++ b/bundle/jellybeans.vim @@ -0,0 +1 @@ +Subproject commit c173b85f7a99f3ccc1956040957dc279aa523a8c -- cgit 1.4.1 From dd0c249d984ce267ab3b32348b36db892c155932 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 3 Nov 2013 01:11:28 -0500 Subject: Switch to (customized) jellybeans colorscheme --- .vimrc | 7 +------ bundle/jellybeans.vim | 2 +- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.vimrc b/.vimrc index 27f9114c..ea546d9d 100644 --- a/.vimrc +++ b/.vimrc @@ -39,10 +39,7 @@ set noshowmode set statusline=%<%f\ %h%m%r%{fugitive#statusline()}%=%-14.(%l,%c%V%)\ %P syntax on -set background=dark -if has('gui_running') - colorscheme base16-default -endif +colorscheme jellybeans " Enable mouse in terminals if has('mouse') @@ -52,8 +49,6 @@ endif " Less clutter in terminals if !has('gui_running') set nospell - set nocursorline - set colorcolumn= endif " GUI options diff --git a/bundle/jellybeans.vim b/bundle/jellybeans.vim index c173b85f..d0497c92 160000 --- a/bundle/jellybeans.vim +++ b/bundle/jellybeans.vim @@ -1 +1 @@ -Subproject commit c173b85f7a99f3ccc1956040957dc279aa523a8c +Subproject commit d0497c929ddee0b999caf355195a8eb2af54547a -- cgit 1.4.1 From 3fa0975f8ef65850dc2716de781af54d9140572c Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 3 Nov 2013 01:40:57 -0500 Subject: Update jellybeans --- bundle/jellybeans.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/jellybeans.vim b/bundle/jellybeans.vim index d0497c92..d49aa7dc 160000 --- a/bundle/jellybeans.vim +++ b/bundle/jellybeans.vim @@ -1 +1 @@ -Subproject commit d0497c929ddee0b999caf355195a8eb2af54547a +Subproject commit d49aa7dc7b5b48b712e44c91a3bd89160acd30fe -- cgit 1.4.1 From 319b2a5f971a9820fea371b653d1270cab7e9cee Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 3 Nov 2013 02:12:54 -0500 Subject: Remove unused plugins --- .gitmodules | 9 --------- bundle/gundo.vim | 1 - bundle/nerdtree | 1 - bundle/ooc.vim | 1 - 4 files changed, 12 deletions(-) delete mode 160000 bundle/gundo.vim delete mode 160000 bundle/nerdtree delete mode 160000 bundle/ooc.vim diff --git a/.gitmodules b/.gitmodules index f8ce5bf2..090231f7 100644 --- a/.gitmodules +++ b/.gitmodules @@ -13,21 +13,12 @@ [submodule "bundle/vim-fugitive"] path = bundle/vim-fugitive url = https://github.com/tpope/vim-fugitive.git -[submodule "bundle/nerdtree"] - path = bundle/nerdtree - url = https://github.com/scrooloose/nerdtree.git [submodule "bundle/gist-vim"] path = bundle/gist-vim url = https://github.com/mattn/gist-vim.git -[submodule "bundle/ooc.vim"] - path = bundle/ooc.vim - url = git://github.com/programble/ooc.vim.git [submodule "bundle/syntastic"] path = bundle/syntastic url = https://github.com/scrooloose/syntastic.git -[submodule "bundle/gundo.vim"] - path = bundle/gundo.vim - url = http://github.com/sjl/gundo.vim.git [submodule "bundle/vim-markdown"] path = bundle/vim-markdown url = https://github.com/tpope/vim-markdown.git diff --git a/bundle/gundo.vim b/bundle/gundo.vim deleted file mode 160000 index 4c376a80..00000000 --- a/bundle/gundo.vim +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 4c376a8061fa335228da420937ce385b847dd56a diff --git a/bundle/nerdtree b/bundle/nerdtree deleted file mode 160000 index dbeb1947..00000000 --- a/bundle/nerdtree +++ /dev/null @@ -1 +0,0 @@ -Subproject commit dbeb1947ea986d7cda460f12962cdef5196ef87d diff --git a/bundle/ooc.vim b/bundle/ooc.vim deleted file mode 160000 index 69c9ee7c..00000000 --- a/bundle/ooc.vim +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 69c9ee7c366c488ee076e479b76cefbb517c210b -- cgit 1.4.1 From 391dfbf60c7a175a246a50e94f0009cd96da4018 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 3 Nov 2013 02:14:45 -0500 Subject: Update plugins --- bundle/ctrlp.vim | 2 +- bundle/gist-vim | 2 +- bundle/refheap.vim | 2 +- bundle/syntastic | 2 +- bundle/vim-fugitive | 2 +- bundle/vim-markdown | 2 +- bundle/vim-pasta | 2 +- bundle/vim-pathogen | 2 +- bundle/webapi-vim | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/bundle/ctrlp.vim b/bundle/ctrlp.vim index 5885da54..b5d3fe66 160000 --- a/bundle/ctrlp.vim +++ b/bundle/ctrlp.vim @@ -1 +1 @@ -Subproject commit 5885da54beba301be4f7b13f7556e97e570193e5 +Subproject commit b5d3fe66a58a13d2ff8b6391f4387608496a030f diff --git a/bundle/gist-vim b/bundle/gist-vim index 3e02137a..bd941d05 160000 --- a/bundle/gist-vim +++ b/bundle/gist-vim @@ -1 +1 @@ -Subproject commit 3e02137acd8c9fd5235b9afeae8a7675296aef77 +Subproject commit bd941d058b319e2b7bfc07de584e975a51782cc9 diff --git a/bundle/refheap.vim b/bundle/refheap.vim index 0780087c..d6d10a4e 160000 --- a/bundle/refheap.vim +++ b/bundle/refheap.vim @@ -1 +1 @@ -Subproject commit 0780087c5894df5cb89381dbac224c4604112b47 +Subproject commit d6d10a4e1aa8dec536275a3ba6f11fbebbea306b diff --git a/bundle/syntastic b/bundle/syntastic index 52992969..14cb3064 160000 --- a/bundle/syntastic +++ b/bundle/syntastic @@ -1 +1 @@ -Subproject commit 529929691f88e4080548fe662ceff462ede34293 +Subproject commit 14cb306414dda411b1809a088e18eb2796030095 diff --git a/bundle/vim-fugitive b/bundle/vim-fugitive index 3b278277..34e2d253 160000 --- a/bundle/vim-fugitive +++ b/bundle/vim-fugitive @@ -1 +1 @@ -Subproject commit 3b278277e0b46711c30a3d1a0083e527b2fb98ed +Subproject commit 34e2d2538a634a0a820a56994333ffa1fec1bc58 diff --git a/bundle/vim-markdown b/bundle/vim-markdown index 9a21f7a6..fccf76f6 160000 --- a/bundle/vim-markdown +++ b/bundle/vim-markdown @@ -1 +1 @@ -Subproject commit 9a21f7a6bc7d5b5cd7a2e78b7893798a67526be8 +Subproject commit fccf76f68fa819629e9dac50a20f3369983e2a38 diff --git a/bundle/vim-pasta b/bundle/vim-pasta index 736e2df0..50ac52a3 160000 --- a/bundle/vim-pasta +++ b/bundle/vim-pasta @@ -1 +1 @@ -Subproject commit 736e2df09c11a623080e71150576e94fb700e8b8 +Subproject commit 50ac52a3cc3377395ceb160e3360923d84d0b916 diff --git a/bundle/vim-pathogen b/bundle/vim-pathogen index 09f2c3b7..1270dceb 160000 --- a/bundle/vim-pathogen +++ b/bundle/vim-pathogen @@ -1 +1 @@ -Subproject commit 09f2c3b7d3666124157de759a68afe47d0bb8d25 +Subproject commit 1270dceb1fe0ca35f8b292c7b41b45b42c5a0cc1 diff --git a/bundle/webapi-vim b/bundle/webapi-vim index 96835261..a043444a 160000 --- a/bundle/webapi-vim +++ b/bundle/webapi-vim @@ -1 +1 @@ -Subproject commit 968352613d3ea664d7896e7844670a2021ef2104 +Subproject commit a043444a5b7cbcc865e4cee61c118de09ea2cbdc -- cgit 1.4.1 From 69fc07ef96702f2bb0bef99cb34923962dfb004e Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 3 Nov 2013 15:07:57 -0500 Subject: Add bindings for CtrlPBufTag and CtrlPLine --- .vimrc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.vimrc b/.vimrc index ea546d9d..0bf38298 100644 --- a/.vimrc +++ b/.vimrc @@ -137,6 +137,8 @@ nmap Q gq nmap b :CtrlPBuffer nmap e :CtrlP +nmap t :CtrlPBufTag +nmap l :CtrlPLine nmap gs :Gstatus nmap gc :Gcommit -- cgit 1.4.1 From e026eb12054fca9651a51405a83ad41670de58a4 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sun, 3 Nov 2013 15:08:18 -0500 Subject: Update jellybeans --- bundle/jellybeans.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/jellybeans.vim b/bundle/jellybeans.vim index d49aa7dc..0f081269 160000 --- a/bundle/jellybeans.vim +++ b/bundle/jellybeans.vim @@ -1 +1 @@ -Subproject commit d49aa7dc7b5b48b712e44c91a3bd89160acd30fe +Subproject commit 0f08126929bce42c5bd9ef6b44008fb338295142 -- cgit 1.4.1 From 6bb4e85351474ce535362843f6772ee4707f8eff Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 9 Nov 2013 14:34:25 -0500 Subject: Remove unused plugin configurations --- .vimrc | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.vimrc b/.vimrc index 0bf38298..75458795 100644 --- a/.vimrc +++ b/.vimrc @@ -144,12 +144,6 @@ nmap gs :Gstatus nmap gc :Gcommit nmap gp :Git push -nmap gg :GitGutterToggle -nmap gh GitGutterNextHunk -nmap gH GitGutterPrevHunk - -nmap u :GundoToggle - " Toggle relative/absolute numbers function! NumberToggle() if(&relativenumber == 1) -- cgit 1.4.1 From 4c4c2a2ba8337ee267b6d524762cc8e93e93713b Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 9 Nov 2013 14:36:16 -0500 Subject: Add vim-easy-align --- .gitmodules | 3 +++ .vimrc | 2 ++ bundle/vim-easy-align | 1 + 3 files changed, 6 insertions(+) create mode 160000 bundle/vim-easy-align diff --git a/.gitmodules b/.gitmodules index 090231f7..8836f4ae 100644 --- a/.gitmodules +++ b/.gitmodules @@ -52,3 +52,6 @@ [submodule "bundle/jellybeans.vim"] path = bundle/jellybeans.vim url = https://github.com/programble/jellybeans.vim +[submodule "bundle/vim-easy-align"] + path = bundle/vim-easy-align + url = https://github.com/junegunn/vim-easy-align.git diff --git a/.vimrc b/.vimrc index 75458795..65fb988b 100644 --- a/.vimrc +++ b/.vimrc @@ -144,6 +144,8 @@ nmap gs :Gstatus nmap gc :Gcommit nmap gp :Git push +vnoremap :EasyAlign + " Toggle relative/absolute numbers function! NumberToggle() if(&relativenumber == 1) diff --git a/bundle/vim-easy-align b/bundle/vim-easy-align new file mode 160000 index 00000000..2daae46a --- /dev/null +++ b/bundle/vim-easy-align @@ -0,0 +1 @@ +Subproject commit 2daae46a43f6e7b9022cbde1dd451d4f798f5f72 -- cgit 1.4.1 From e147881d1099760319c12326ecc6244555967ed2 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 9 Nov 2013 15:24:41 -0500 Subject: Switch to vim-plug --- .gitignore | 5 ++- .gitmodules | 57 ---------------------------- .vimrc | 96 +++++++++++++++++++++++++---------------------- bundle/Vim-Tomorrow-Theme | 1 - bundle/base16-vim | 1 - bundle/ctrlp.vim | 1 - bundle/gist-vim | 1 - bundle/itchy.vim | 1 - bundle/jellybeans.vim | 1 - bundle/refheap.vim | 1 - bundle/syntastic | 1 - bundle/tagbar | 1 - bundle/vim-airline | 1 - bundle/vim-commentary | 1 - bundle/vim-easy-align | 1 - bundle/vim-fugitive | 1 - bundle/vim-markdown | 1 - bundle/vim-pasta | 1 - bundle/vim-pathogen | 1 - bundle/vim-ragtag | 1 - bundle/vim-signify | 1 - bundle/webapi-vim | 1 - vim-plug.sh | 2 + 23 files changed, 57 insertions(+), 122 deletions(-) delete mode 100644 .gitmodules delete mode 160000 bundle/Vim-Tomorrow-Theme delete mode 160000 bundle/base16-vim delete mode 160000 bundle/ctrlp.vim delete mode 160000 bundle/gist-vim delete mode 160000 bundle/itchy.vim delete mode 160000 bundle/jellybeans.vim delete mode 160000 bundle/refheap.vim delete mode 160000 bundle/syntastic delete mode 160000 bundle/tagbar delete mode 160000 bundle/vim-airline delete mode 160000 bundle/vim-commentary delete mode 160000 bundle/vim-easy-align delete mode 160000 bundle/vim-fugitive delete mode 160000 bundle/vim-markdown delete mode 160000 bundle/vim-pasta delete mode 160000 bundle/vim-pathogen delete mode 160000 bundle/vim-ragtag delete mode 160000 bundle/vim-signify delete mode 160000 bundle/webapi-vim create mode 100755 vim-plug.sh diff --git a/.gitignore b/.gitignore index 532147d2..28bda465 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ -.netrwhist -plugin/private.vim +autoload +plugin +plugged diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index 8836f4ae..00000000 --- a/.gitmodules +++ /dev/null @@ -1,57 +0,0 @@ -[submodule "bundle/vim-pathogen"] - path = bundle/vim-pathogen - url = https://github.com/tpope/vim-pathogen.git -[submodule "bundle/ctrlp.vim"] - path = bundle/ctrlp.vim - url = https://github.com/kien/ctrlp.vim.git -[submodule "bundle/Vim-Tomorrow-Theme"] - path = bundle/Vim-Tomorrow-Theme - url = git://github.com/programble/Vim-Tomorrow-Theme.git -[submodule "bundle/vim-pasta"] - path = bundle/vim-pasta - url = https://github.com/sickill/vim-pasta.git -[submodule "bundle/vim-fugitive"] - path = bundle/vim-fugitive - url = https://github.com/tpope/vim-fugitive.git -[submodule "bundle/gist-vim"] - path = bundle/gist-vim - url = https://github.com/mattn/gist-vim.git -[submodule "bundle/syntastic"] - path = bundle/syntastic - url = https://github.com/scrooloose/syntastic.git -[submodule "bundle/vim-markdown"] - path = bundle/vim-markdown - url = https://github.com/tpope/vim-markdown.git -[submodule "bundle/itchy.vim"] - path = bundle/itchy.vim - url = git://github.com/programble/itchy.vim.git -[submodule "bundle/webapi-vim"] - path = bundle/webapi-vim - url = https://github.com/mattn/webapi-vim.git -[submodule "bundle/refheap.vim"] - path = bundle/refheap.vim - url = https://github.com/Raynes/refheap.vim.git -[submodule "bundle/base16-vim"] - path = bundle/base16-vim - url = https://github.com/programble/base16-vim.git -[submodule "bundle/vim-commentary"] - path = bundle/vim-commentary - url = https://github.com/tpope/vim-commentary.git -[submodule "bundle/vim-ragtag"] - path = bundle/vim-ragtag - url = https://github.com/tpope/vim-ragtag.git -[submodule "bundle/vim-airline"] - path = bundle/vim-airline - url = https://github.com/bling/vim-airline.git -[submodule "bundle/tagbar"] - path = bundle/tagbar - url = https://github.com/majutsushi/tagbar.git -[submodule "bundle/vim-signify"] - path = bundle/vim-signify - url = https://github.com/mhinz/vim-signify.git -[submodule "bundle/jellybeans.vim"] - path = bundle/jellybeans.vim - url = https://github.com/programble/jellybeans.vim -[submodule "bundle/vim-easy-align"] - path = bundle/vim-easy-align - url = https://github.com/junegunn/vim-easy-align.git diff --git a/.vimrc b/.vimrc index 65fb988b..e481b1c5 100644 --- a/.vimrc +++ b/.vimrc @@ -1,14 +1,5 @@ -set nocp +set nocompatible -" Load pathogen -runtime bundle/vim-pathogen/autoload/pathogen.vim -call pathogen#infect() - -" Remap leader to , -noremap \ , -let mapleader = "," - -" General set backspace=indent,eol,start set hidden set backup @@ -33,13 +24,8 @@ set list set listchars=tab:»·,trail:· set foldmethod=syntax set foldlevel=1000 - -set laststatus=2 " Always show statusline -set noshowmode -set statusline=%<%f\ %h%m%r%{fugitive#statusline()}%=%-14.(%l,%c%V%)\ %P - +set laststatus=2 syntax on -colorscheme jellybeans " Enable mouse in terminals if has('mouse') @@ -93,23 +79,9 @@ runtime macros/matchit.vim autocmd InsertEnter * setlocal nolist autocmd InsertLeave * setlocal list -" Airline config -let g:airline_left_sep = '' -let g:airline_right_sep = '' - -" Syntastic options -let g:syntastic_check_on_open=1 -let g:syntastic_enable_signs=0 -let g:syntastic_auto_loc_list=2 - -" Signify -let g:signify_vcs_list = ['git'] -let g:signify_sign_overwrite = 1 -let g:signify_sign_change = '~' - -let g:airline#extensions#hunks#non_zero_only = 1 - -let g:airline#extensions#whitespace#enabled = 0 +" Remap leader to , +noremap \ , +let mapleader = "," " Custom maps nnoremap ' ` @@ -135,17 +107,6 @@ imap nmap Q gq -nmap b :CtrlPBuffer -nmap e :CtrlP -nmap t :CtrlPBufTag -nmap l :CtrlPLine - -nmap gs :Gstatus -nmap gc :Gcommit -nmap gp :Git push - -vnoremap :EasyAlign - " Toggle relative/absolute numbers function! NumberToggle() if(&relativenumber == 1) @@ -160,3 +121,50 @@ nmap :call NumberToggle() " Custom commands command! W :w +call plug#begin('~/.vim/plugged') + +Plug 'bling/vim-airline' +set noshowmode +let g:airline_left_sep = '' +let g:airline_right_sep = '' +let g:airline#extensions#hunks#non_zero_only = 1 +let g:airline#extensions#whitespace#enabled = 0 + +Plug 'scrooloose/syntastic' +let g:syntastic_check_on_open=1 +let g:syntastic_enable_signs=0 +let g:syntastic_auto_loc_list=2 + +Plug 'mhinz/vim-signify' +let g:signify_vcs_list = ['git'] +let g:signify_sign_overwrite = 1 +let g:signify_sign_change = '~' + +Plug 'kien/ctrlp.vim' +nmap b :CtrlPBuffer +nmap e :CtrlP +nmap t :CtrlPBufTag +nmap l :CtrlPLine + +Plug 'tpope/vim-fugitive' +nmap gs :Gstatus +nmap gc :Gcommit +nmap gp :Git push + +Plug 'junegunn/vim-easy-align' +vnoremap :EasyAlign + +Plug 'Raynes/refheap.vim' +Plug 'majutsushi/tagbar' +Plug 'mattn/gist-vim' +Plug 'mattn/webapi-vim' +Plug 'programble/itchy.vim' +Plug 'programble/jellybeans.vim' +Plug 'sickill/vim-pasta' +Plug 'tpope/vim-commentary' +Plug 'tpope/vim-markdown' +Plug 'tpope/vim-ragtag' + +call plug#end() + +colorscheme jellybeans diff --git a/bundle/Vim-Tomorrow-Theme b/bundle/Vim-Tomorrow-Theme deleted file mode 160000 index 1e0c2ab5..00000000 --- a/bundle/Vim-Tomorrow-Theme +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 1e0c2ab5d5a82d7adecbc84f689abcf217bd1b50 diff --git a/bundle/base16-vim b/bundle/base16-vim deleted file mode 160000 index 6db489a7..00000000 --- a/bundle/base16-vim +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 6db489a71dc0f588d21fbe5e40a257a307bac108 diff --git a/bundle/ctrlp.vim b/bundle/ctrlp.vim deleted file mode 160000 index b5d3fe66..00000000 --- a/bundle/ctrlp.vim +++ /dev/null @@ -1 +0,0 @@ -Subproject commit b5d3fe66a58a13d2ff8b6391f4387608496a030f diff --git a/bundle/gist-vim b/bundle/gist-vim deleted file mode 160000 index bd941d05..00000000 --- a/bundle/gist-vim +++ /dev/null @@ -1 +0,0 @@ -Subproject commit bd941d058b319e2b7bfc07de584e975a51782cc9 diff --git a/bundle/itchy.vim b/bundle/itchy.vim deleted file mode 160000 index 13bf38ff..00000000 --- a/bundle/itchy.vim +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 13bf38ff895f7c32befb78b9505c478b77545329 diff --git a/bundle/jellybeans.vim b/bundle/jellybeans.vim deleted file mode 160000 index 0f081269..00000000 --- a/bundle/jellybeans.vim +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 0f08126929bce42c5bd9ef6b44008fb338295142 diff --git a/bundle/refheap.vim b/bundle/refheap.vim deleted file mode 160000 index d6d10a4e..00000000 --- a/bundle/refheap.vim +++ /dev/null @@ -1 +0,0 @@ -Subproject commit d6d10a4e1aa8dec536275a3ba6f11fbebbea306b diff --git a/bundle/syntastic b/bundle/syntastic deleted file mode 160000 index 14cb3064..00000000 --- a/bundle/syntastic +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 14cb306414dda411b1809a088e18eb2796030095 diff --git a/bundle/tagbar b/bundle/tagbar deleted file mode 160000 index 2e2ba2ea..00000000 --- a/bundle/tagbar +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 2e2ba2eab252b05051d4ca7cd87b2fcb23a411d6 diff --git a/bundle/vim-airline b/bundle/vim-airline deleted file mode 160000 index 99b7cdf3..00000000 --- a/bundle/vim-airline +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 99b7cdf334c7e60498b037f45273cc02f85ab6fe diff --git a/bundle/vim-commentary b/bundle/vim-commentary deleted file mode 160000 index a3ae0df1..00000000 --- a/bundle/vim-commentary +++ /dev/null @@ -1 +0,0 @@ -Subproject commit a3ae0df1d9e13941e9e8086637055841ce93f7bd diff --git a/bundle/vim-easy-align b/bundle/vim-easy-align deleted file mode 160000 index 2daae46a..00000000 --- a/bundle/vim-easy-align +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 2daae46a43f6e7b9022cbde1dd451d4f798f5f72 diff --git a/bundle/vim-fugitive b/bundle/vim-fugitive deleted file mode 160000 index 34e2d253..00000000 --- a/bundle/vim-fugitive +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 34e2d2538a634a0a820a56994333ffa1fec1bc58 diff --git a/bundle/vim-markdown b/bundle/vim-markdown deleted file mode 160000 index fccf76f6..00000000 --- a/bundle/vim-markdown +++ /dev/null @@ -1 +0,0 @@ -Subproject commit fccf76f68fa819629e9dac50a20f3369983e2a38 diff --git a/bundle/vim-pasta b/bundle/vim-pasta deleted file mode 160000 index 50ac52a3..00000000 --- a/bundle/vim-pasta +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 50ac52a3cc3377395ceb160e3360923d84d0b916 diff --git a/bundle/vim-pathogen b/bundle/vim-pathogen deleted file mode 160000 index 1270dceb..00000000 --- a/bundle/vim-pathogen +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 1270dceb1fe0ca35f8b292c7b41b45b42c5a0cc1 diff --git a/bundle/vim-ragtag b/bundle/vim-ragtag deleted file mode 160000 index 1a93cbb1..00000000 --- a/bundle/vim-ragtag +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 1a93cbb14f537c001a52a43b94309d6c625b5953 diff --git a/bundle/vim-signify b/bundle/vim-signify deleted file mode 160000 index ec4d88eb..00000000 --- a/bundle/vim-signify +++ /dev/null @@ -1 +0,0 @@ -Subproject commit ec4d88eb1c5dda97db0fc9e4ddbf33e11faacc39 diff --git a/bundle/webapi-vim b/bundle/webapi-vim deleted file mode 160000 index a043444a..00000000 --- a/bundle/webapi-vim +++ /dev/null @@ -1 +0,0 @@ -Subproject commit a043444a5b7cbcc865e4cee61c118de09ea2cbdc diff --git a/vim-plug.sh b/vim-plug.sh new file mode 100755 index 00000000..0fc9a28c --- /dev/null +++ b/vim-plug.sh @@ -0,0 +1,2 @@ +mkdir -p ~/.vim/autoload +curl -fLo ~/.vim/autoload/plug.vim https://raw.github.com/junegunn/vim-plug/master/plug.vim -- cgit 1.4.1 From c8b16d3116952ae5251750a9e96360a24fd65d33 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 9 Nov 2013 15:33:18 -0500 Subject: Add Plugins comment --- .vimrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index e481b1c5..4538a951 100644 --- a/.vimrc +++ b/.vimrc @@ -118,9 +118,10 @@ endfunc nmap :call NumberToggle() -" Custom commands command! W :w +" Plugins + call plug#begin('~/.vim/plugged') Plug 'bling/vim-airline' -- cgit 1.4.1 From 74b1fd50abcfa477ff626c1b415cddb94cab7dad Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 9 Nov 2013 15:36:23 -0500 Subject: Fix NumberToggle --- .vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index 4538a951..89798357 100644 --- a/.vimrc +++ b/.vimrc @@ -110,7 +110,7 @@ nmap Q gq " Toggle relative/absolute numbers function! NumberToggle() if(&relativenumber == 1) - set number + set norelativenumber else set relativenumber endif -- cgit 1.4.1 From df85d943a3b92767792bdfcda0c522387f83d26c Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Sat, 9 Nov 2013 15:49:52 -0500 Subject: Remove instructions from README --- README.md | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/README.md b/README.md index cc31bf06..360b2b72 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,3 @@ # VIM Configuration My amazing VIM configuration - -## Install - -``` -cd ~ -git clone git://github.com/programble/dotvim.git .vim -ln -s .vim/.vimrc .vimrc -cd .vim -git submodule init -git submodule update -``` -- cgit 1.4.1