Mercurial > public > dotfiles
diff vim/.vimrc @ 25:732ed3539b7a
Workiva Vim updates.
Local settings for Dart and Groovy.
.vimrc tweaks for recent work and plugins.
Moved readme for bundle up a level so we can .hgignore the entire directory.
Update readme for bundle directory for plugins I started using.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Fri, 31 Jul 2015 15:39:23 -0500 |
parents | 7c2f7ee3f55e |
children | d17e9bd25f68 |
line wrap: on
line diff
--- a/vim/.vimrc Fri Jan 09 11:35:06 2015 -0600 +++ b/vim/.vimrc Fri Jul 31 15:39:23 2015 -0500 @@ -18,7 +18,7 @@ " CtrlP related settings set wildignore+=*/.git/*,*/.hg/*,*/.svn/*,*.o,*.swp,*.pyc let g:ctrlp_working_path_mode = 'ra' -let g:ctrlp_max_files = 20000 +let g:ctrlp_max_files = 30000 " This allows % to toggle on if/elsif/else/end, XML tags, & more runtime macros/matchit.vim @@ -36,6 +36,10 @@ let g:netrw_sort_sequence = "[\/]$,*,\.bak$,\.o$,\.info$,\.swp$,\.obj$" +if has('vim_starting') + set runtimepath+=~/.vim/bundle/dart-vim-plugin +endif + syntax on filetype on filetype plugin on @@ -145,6 +149,7 @@ endfunction nnoremap <leader>s :call BgnSwitchPart()<CR> +nmap <silent> <Leader>e :Explore<CR> " Pathogen support call pathogen#infect()