# HG changeset patch # User Steve Losh # Date 1313091784 14400 # Node ID a03a734110c39e46acc30d914bd76aa8c7246d75 # Parent 39e899d00175e359046b5b68b24fdaa4db6c11ce Alphabetize plugin settings. diff -r 39e899d00175 -r a03a734110c3 vim/.vimrc --- a/vim/.vimrc Thu Aug 11 15:40:50 2011 -0400 +++ b/vim/.vimrc Thu Aug 11 15:43:04 2011 -0400 @@ -550,53 +550,9 @@ map a :Ack! " }}} -" NERD Tree {{{ - -noremap :NERDTreeToggle -inoremap :NERDTreeToggle - -au Filetype nerdtree setlocal nolist - -let NERDTreeIgnore=['.vim$', '\~$', '.*\.pyc$', 'pip-log\.txt$', 'whoosh_index', 'xapian_index', '.*.pid', 'monitor.py', '.*-fixtures-.*.json', '.*\.o$', 'db.db'] - -" }}} -" HTML5 {{{ - -let g:event_handler_attributes_complete = 0 -let g:rdfa_attributes_complete = 0 -let g:microdata_attributes_complete = 0 -let g:atia_attributes_complete = 0 - -" }}} -" Rope {{{ - -let ropevim_enable_shortcuts = 0 -let ropevim_guess_project = 1 -let ropevim_global_prefix = 'p' +" Autoclose {{{ -source $HOME/.vim/sadness/sadness.vim - -" }}} -" Gundo {{{ - -nnoremap :GundoToggle -let g:gundo_debug = 1 -let g:gundo_preview_bottom = 1 - -" }}} -" VimClojure {{{ - -let vimclojure#HighlightBuiltins = 1 -let vimclojure#ParenRainbow = 1 -let vimclojure#WantNailgun = 0 - -" }}} -" Syntastic {{{ - -let g:syntastic_enable_signs = 1 -let g:syntastic_disabled_filetypes = ['html'] -let g:syntastic_stl_format = '[%E{Error 1/%e: line %fe}%B{, }%W{Warning 1/%w: line %fw}]' -let g:syntastic_jsl_conf = '$HOME/.vim/jsl.conf' +nmap x ToggleAutoCloseMappings " }}} " Command-T {{{ @@ -604,11 +560,6 @@ let g:CommandTMaxHeight = 20 " }}} -" LISP (built-in) {{{ - -let g:lisp_rainbow = 1 - -" }}} " Easymotion {{{ let g:EasyMotion_do_mapping = 0 @@ -625,14 +576,24 @@ onoremap T :call EasyMotionT(0, 1) " }}} -" Sparkup {{{ +" Gundo {{{ -let g:sparkupNextMapping = '' +nnoremap :GundoToggle +let g:gundo_debug = 1 +let g:gundo_preview_bottom = 1 + +" }}} +" HTML5 {{{ -"}}} -" Autoclose {{{ +let g:event_handler_attributes_complete = 0 +let g:rdfa_attributes_complete = 0 +let g:microdata_attributes_complete = 0 +let g:atia_attributes_complete = 0 -nmap x ToggleAutoCloseMappings +" }}} +" Lisp (built-in) {{{ + +let g:lisp_rainbow = 1 " }}} " Makegreen {{{ @@ -640,12 +601,40 @@ nnoremap \| :call MakeGreen('') " }}} +" NERD Tree {{{ + +noremap :NERDTreeToggle +inoremap :NERDTreeToggle + +au Filetype nerdtree setlocal nolist + +let NERDTreeIgnore=['.vim$', '\~$', '.*\.pyc$', 'pip-log\.txt$', 'whoosh_index', 'xapian_index', '.*.pid', 'monitor.py', '.*-fixtures-.*.json', '.*\.o$', 'db.db'] + +" }}} +" OrgMode {{{ + +let g:org_plugins = ['ShowHide', '|', 'Navigator', 'EditStructure', '|', 'Todo', 'Date', 'Misc'] + +let g:org_todo_keywords = ['TODO', '|', 'DONE'] + +let g:org_debug = 1 + +" }}} " Pydoc {{{ au FileType python noremap ds :call ShowPyDoc('', 1) au FileType python noremap dS :call ShowPyDoc('', 1) " }}} +" Rope {{{ + +let ropevim_enable_shortcuts = 0 +let ropevim_guess_project = 1 +let ropevim_global_prefix = 'p' + +source $HOME/.vim/sadness/sadness.vim + +" }}} " Scratch {{{ command! ScratchToggle call ScratchToggle() @@ -663,15 +652,6 @@ nnoremap :ScratchToggle " }}} -" OrgMode {{{ - -let g:org_plugins = ['ShowHide', '|', 'Navigator', 'EditStructure', '|', 'Todo', 'Date', 'Misc'] - -let g:org_todo_keywords = ['TODO', '|', 'DONE'] - -let g:org_debug = 1 - -" }}} " SLIMV {{{ "let g:slimv_lisp = '"java -cp `lein classpath` clojure.main"' @@ -679,6 +659,19 @@ let g:slimv_repl_syntax = 1 " }}}} +" Sparkup {{{ + +let g:sparkupNextMapping = '' + +"}}} +" Syntastic {{{ + +let g:syntastic_enable_signs = 1 +let g:syntastic_disabled_filetypes = ['html'] +let g:syntastic_stl_format = '[%E{Error 1/%e: line %fe}%B{, }%W{Warning 1/%w: line %fw}]' +let g:syntastic_jsl_conf = '$HOME/.vim/jsl.conf' + +" }}} " Threesome {{{ let g:threesome_initial_mode = "grid" @@ -701,6 +694,13 @@ let g:threesome_wrap = "nowrap" " }}} +" VimClojure {{{ + +let vimclojure#HighlightBuiltins = 1 +let vimclojure#ParenRainbow = 1 +let vimclojure#WantNailgun = 0 + +" }}} " }}} " Synstack -------------------------------------------------------------------- {{{