Skip to content

Instantly share code, notes, and snippets.

@marionette-of-u
Created January 29, 2013 13:27
Show Gist options
  • Select an option

  • Save marionette-of-u/4664212 to your computer and use it in GitHub Desktop.

Select an option

Save marionette-of-u/4664212 to your computer and use it in GitHub Desktop.
"---------------------------------------------------------------------------
" neocomplcache
let g:neocomplcache_enable_at_startup = 1
let g:neocomplcache_force_overwrite_completefunc=1
if !exists("g:neocomplcache_force_omni_patterns")
let g:neocomplcache_force_omni_patterns = {}
endif
let g:neocomplcache_force_omni_patterns.cpp = '[^.[:digit:] *\t]\%(\.\|->\)\|::'
"---------------------------------------------------------------------------
" clang_complete
let g:clang_complete_auto=0
let g:clang_use_library=1
let g:clang_exec='"C:/clang/clang.exe'
let g:clang_library_path='C:/clang'
let g:clang_user_options='-std=c++11 -fsyntax-only -IC:/MinGW/msys/1.0/local/include -IC:/MinGW/lib/gcc/mingw32/4.7.2/include -IC:/MinGW/lib/gcc/mingw32/4.7.2/include/c++ 2> NUL || exit 0"'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment