summaryrefslogtreecommitdiffstats
path: root/vimrc
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2010-01-16 00:45:13 -0600
committerJesse Luehrs <doy@tozt.net>2010-01-16 00:45:13 -0600
commit0e61767e9563d1525d0a75d49a90a9b0e1d6f7f8 (patch)
tree8020880f2c880a0d73a71083a470f02b09df7c30 /vimrc
parentee5352fe877c07eadd14f5f55765c59d17853e43 (diff)
downloadconf-0e61767e9563d1525d0a75d49a90a9b0e1d6f7f8.tar.gz
conf-0e61767e9563d1525d0a75d49a90a9b0e1d6f7f8.zip
remove unused vim plugins
Diffstat (limited to 'vimrc')
-rw-r--r--vimrc31
1 files changed, 0 insertions, 31 deletions
diff --git a/vimrc b/vimrc
index 0259b59..78920b3 100644
--- a/vimrc
+++ b/vimrc
@@ -518,21 +518,6 @@ let g:rainbow_brace = 1
" modelines which update highlighting)
autocmd BufWinEnter * runtime plugin/rainbow_paren.vim
" }}}
-" Taglist {{{
-let s:session_file = './.tlist_session'
-let TlistIncWinWidth = 0
-let Tlist_GainFocus_On_ToggleOpen = 1
-let Tlist_Use_Horiz_Window = 1
-let Tlist_Compact_Format = 1
-let Tlist_Close_On_Select = 1
-let Tlist_Display_Prototype = 1
-nnoremap <silent> <F8> :TlistToggle<CR>
-" if the current file isn't below the current directory, :. doesn't modify %
-if file_readable(s:session_file) && expand("%:.") !~ '^/'
- autocmd VimEnter * TlistDebug | exec 'TlistSessionLoad ' . s:session_file
- autocmd VimLeave * call delete(s:session_file) | exec 'TlistSessionSave ' . s:session_file
-endif
-" }}}
" SuperTab {{{
let g:SuperTabMidWordCompletion = 0
let g:SuperTabDefaultCompletionType = 'context'
@@ -562,20 +547,4 @@ let g:Skeleton_patterns = [
\'Makefile.PL'
\]
" }}}
-" snippetsEmu {{{
-function HighlightSnipTags()
- if &ft == 'perl'
- " this is something of a hack, but... there's only so much you can do
- " with vim syntax stuff
- let extra = ' containedin=.*Var.*,.*Error'
- else
- let extra = ''
- endif
- exe 'syn match SnipTag /<{.\{-}}>/ contains=SnipTagInner'.extra
- syn match SnipTagInner /<{\zs.\{-}\ze}>/ contained
- hi link SnipTag Comment
- hi link SnipTagInner Type
-endfunction
-autocmd BufWinEnter * call HighlightSnipTags()
-" }}}
" }}}