|
|
@ -1,10 +1,13 @@ |
|
|
|
set nocompatible |
|
|
|
|
|
|
|
" set up vundle to manage plugins |
|
|
|
" this sets up vundle to manage plugins |
|
|
|
" https://github.com/gmarik/vundle |
|
|
|
" to use: |
|
|
|
" git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle |
|
|
|
" <vundle> |
|
|
|
" mkdir -p ~/.vim/bundle |
|
|
|
" git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle |
|
|
|
" vim +BundleInstall |
|
|
|
|
|
|
|
" <vundle-config> |
|
|
|
|
|
|
|
filetype off |
|
|
|
|
|
|
@ -28,8 +31,8 @@ set nocompatible |
|
|
|
Bundle 'flazz/vim-colorschemes' |
|
|
|
Bundle 'altercation/vim-colors-solarized' |
|
|
|
Bundle 'chriskempson/vim-tomorrow-theme.git' |
|
|
|
Bundle 'ColorSchemeMenuMaker' |
|
|
|
Bundle 'desert-warm-256' |
|
|
|
Bundle 'ColorSchemeMenuMaker' |
|
|
|
|
|
|
|
" match lots of things |
|
|
|
Bundle 'edsono/vim-matchit' |
|
|
@ -38,7 +41,7 @@ set nocompatible |
|
|
|
Bundle 'FuzzyFinder' |
|
|
|
" Bundle 'surround.vim' |
|
|
|
|
|
|
|
" </vundle> |
|
|
|
" </vundle-config> |
|
|
|
|
|
|
|
set title |
|
|
|
|
|
|
@ -49,11 +52,12 @@ filetype indent on |
|
|
|
" do not beep or flash at me |
|
|
|
" vb is needed to stop beep |
|
|
|
" t_vb sets visual bell action, we're nulling it out here) |
|
|
|
" note also that this may need to be repeated in .gvimrc |
|
|
|
set visualbell |
|
|
|
set t_vb= |
|
|
|
|
|
|
|
" enable mouse for (a)ll, (n)ormal, (v)isual, (i)nsert, or (c)ommand line |
|
|
|
" mode -- seems to work in most terminals |
|
|
|
" mode - seems to work in most terminals |
|
|
|
set mouse=a |
|
|
|
|
|
|
|
" let me delete stuff like crazy in insert mode |
|
|
@ -69,7 +73,7 @@ set statusline=%<%{fugitive#statusline()}\ %f\ %h%m%r%=%-14.(%l,%c%V%)\ %P |
|
|
|
" keep lots of command-line history |
|
|
|
set history=3500 |
|
|
|
|
|
|
|
" search |
|
|
|
" search: |
|
|
|
set incsearch |
|
|
|
set ignorecase |
|
|
|
set smartcase |
|
|
@ -179,6 +183,8 @@ au BufWinEnter notes silent loadview |
|
|
|
" read (unchanged) buffers when they're modified on filesystem |
|
|
|
set autoread |
|
|
|
|
|
|
|
" <colors> |
|
|
|
" colorscheme brookstream |
|
|
|
colorscheme pyte |
|
|
|
" colorscheme mustang |
|
|
|
" </colors> |