X-Git-Url: https://v.licheni.net/stack/conf/vim.git/blobdiff_plain/3f1b43091d73ba395dc1669473aa522c0b323e95..2e1f6052a3a1796b669687805b41825f316b3d64:/vimrc diff --git a/vimrc b/vimrc index 34ac080..d9bcc93 100644 --- a/vimrc +++ b/vimrc @@ -10,6 +10,14 @@ set viminfo+=! " make sure it can save viminfo set isk+=_,@,- " none of these should be word dividers, so make them not be set nobackup +set completeopt=longest,menuone,preview +inoremap pumvisible() ? "\" : "\u\" +inoremap pumvisible() ? '' : + \ '=pumvisible() ? "\Down>" : ""' + +inoremap pumvisible() ? '' : + \ '=pumvisible() ? "\Down>" : ""' + """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " Theme/Colors """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" @@ -152,9 +160,9 @@ map :call MySpellLang() " Map NERDTree show and hide map :NERDTreeToggle imap :NERDTreeToggle -" Taglist toggle -map :TlistOpen -imap :TlistClose +" Tagbar toggle +map :TagbarToggle +imap :TagbarToggle """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" @@ -181,6 +189,12 @@ if has ("autocmd") autocmd BufNewFile *.pl call append(0, "#!/usr/bin/perl") autocmd BufNewFile *.py call append(0, "#!/bin/python") + + " PHP documenter script bound to Control-P + autocmd FileType php inoremap :call PhpDocSingle()i + autocmd FileType php nnoremap :call PhpDocSingle() + autocmd FileType php vnoremap :call PhpDocRange() + " When editing a file, always jump to the last known cursor position. " Don't do it when the position is invalid or when inside an event handler " (happens when dropping a file on gvim). @@ -208,6 +222,8 @@ if &term == "screen" || &term == "xterm" set title endif + + """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" " Plugin activation """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" @@ -217,11 +233,20 @@ let vam_install_path = expand('$HOME') . '/.vim/addons' exec 'set runtimepath+='.vam_install_path.'/vim-addon-manager' " Enable addons with vim-addon-manager using file type recognition let ft_addons = { - \ 'always': ['surround', 'checksyntax', 'LargeFile', 'snipmate', 'snipmate-snippets', 'The_NERD_tree'], + \ 'always': ['surround', 'checksyntax', 'LargeFile', 'snipmate', 'snipmate-snippets', 'The_NERD_tree', 'SuperTab%1643'], \ 'r': [ 'Screen_vim__gnu_screentmux', 'Vim-R-plugin' ], - \ '^\%(c\|cpp\|javascript\|python\|php\|html\|xml\|r\|sh\|css\|java\|make\|xslt\|vim\)$': [ 'taglist-plus', 'checksyntax'], - \ 'python': ['pythoncomplete', 'pydoc', 'python%790'], + \ '^\%(c\|cpp\|javascript\|python\|php\|html\|xml\|r\|sh\|css\|java\|make\|xslt\|vim\)$': [ 'Tagbar', 'checksyntax'], + \ '^\%(c\|cpp\)$': [ 'clang_complete' ], + \ 'python': ['pythoncomplete', 'pydoc'], + \ 'php': ['phpcomplete', 'PDV_-_phpDocumentor_for_Vim'], \ 'gpg': ['gnupg'], \ } call vam#ActivateAddons(ft_addons['always'], {'auto_install': 1}) au FileType * for l in values(filter(copy(ft_addons), string(expand('')).' =~ v:key')) | call vam#ActivateAddons(l, {'force_loading_plugins_now':1}) | endfor + +" SuperTab option for context aware completion +let g:SuperTabDefaultCompletionType = "context" + +let g:clang_complete_copen = 1 +let g:clang_complete_auto = 1 +let g:clang_user_options='|| exit 0'