438 ">> interestingwords |
438 ">> interestingwords |
439 " These are jellybeans colors and some complements |
439 " These are jellybeans colors and some complements |
440 let g:interestingWordsGUIColors = ['#C4A258', '#D8AD4C', '#6AADA0', '#71B9F8', '#A037B0', '#CF6A4C'] |
440 let g:interestingWordsGUIColors = ['#C4A258', '#D8AD4C', '#6AADA0', '#71B9F8', '#A037B0', '#CF6A4C'] |
441 let g:interestingWordsRandomiseColors = 1 |
441 let g:interestingWordsRandomiseColors = 1 |
442 |
442 |
443 ">> neocomplcache |
|
444 let g:acp_enableAtStartup = 0 |
|
445 let g:neocomplcache_enable_at_startup = 1 |
|
446 let g:neocomplcache_enable_smart_case = 1 |
|
447 let g:neocomplcache_min_syntax_length = 3 |
|
448 |
|
449 if !exists('g:neocomplcache_omni_patterns') |
|
450 let g:neocomplcache_omni_patterns = {} |
|
451 endif |
|
452 |
|
453 "Required to get ruby omni |
|
454 let g:neocomplcache_omni_patterns.ruby = '[^. *\t]\.\w*\|\h\w*::' |
|
455 " allow module completion from CPAN when combined with perlomni |
|
456 "let g:neocomplcache_omni_patterns.perl = '[^. \t]->\%(\h\w*\)\?\|\h\w*::\%(\h\w*\)\?' |
|
457 " seems like overkill |
|
458 |
|
459 if !exists('g:neocomplcache_filename_include_exprs') |
|
460 let g:neocomplcache_filename_include_exprs = {} |
|
461 endif |
|
462 |
|
463 "help scan into "use" statements |
|
464 let g:neocomplcache_filename_include_exprs.perl = 'fnamemodify(substitute(v:fname, "/", "::", "g"), ":r")' |
|
465 |
|
466 " }}} |
443 " }}} |
467 |
444 |
468 |
445 |
469 " {{{ Commands |
446 " {{{ Commands |
470 " Preview markdown mail -- I edit with headers so I box them in a code block. |
447 " Preview markdown mail -- I edit with headers so I box them in a code block. |