Add vundle, add hh, add showmarks

This commit is contained in:
Hunter Haugen 2012-05-03 13:31:58 -07:00
parent 42cd0707e7
commit 839346a594
4 changed files with 33 additions and 7 deletions

1
.vim/bundle/Gundo Submodule

@ -0,0 +1 @@
Subproject commit ee32891c126b06d70d92b6ccefe4ff9a2c4fd7d6

1
.vim/bundle/ShowMarks Submodule

@ -0,0 +1 @@
Subproject commit ef22709d8ebba137819ab0e60db5463b480934cd

1
.vim/bundle/vundle Submodule

@ -0,0 +1 @@
Subproject commit 03ed2bd39e37c5ff035c05197af81558eb5d8a89

25
.vimrc
View file

@ -171,7 +171,7 @@ set popt+=syntax:y
" Enable filetype settings {{{2
if has("eval")
filetype on
filetype off " Off for vundle
filetype plugin on
filetype indent on
endif
@ -619,6 +619,10 @@ nmap <C-h> <C-w>h
nmap <C-j> <C-w>j
nmap <C-k> <C-w>k
nmap <C-l> <C-w>l
nmap <C-Left> <C-w>h
nmap <C-Down> <C-w>j
nmap <C-Up> <C-w>k
nmap <C-Right> <C-w>l
" Move through buffers instead of tabs with gt/gT {{{2
"nmap gT :bprev<CR>
@ -697,6 +701,8 @@ noremap <Leader>J :s/\%#\(.*\)\n\(.*\)/\2\1<CR>
" In normal mode, jj or jl escapes {{{2
inoremap jj <Esc>
inoremap hh <Esc>
"inoremap kk <Esc> " Messes up final-k fuf searches
inoremap jl <Esc>
" Kill line like emacs {{{2
@ -1063,6 +1069,7 @@ if has("eval")
endif
let g:showmarks_include="abcdefghijklmnopqrstuvwxyz"
"let g:showmarks_include="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
if has("autocmd")
fun! <SID>FixShowmarksColours()
@ -1115,6 +1122,22 @@ if has("eval")
endif
endif
" Vundle
set rtp+=~/.vim/bundle/vundle
call vundle#rc()
Bundle 'gmarik/vundle'
Bundle 'vim-scripts/ShowMarks'
filetype plugin indent on
" Brief help
" :BundleList - list configured bundles
" :BundleInstall(!) - install(update) bundles
" :BundleSearch(!) foo - search(or refresh cache first) for foo
" :BundleClean(!) - confirm(or auto-approve) removal of unused bundles
"
" see :h vundle for more details or wiki for FAQ
" NOTE: comments after Bundle command are not allowed..
" }}}1
"-----------------------------------------------------------------------