1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 20:00:06 +08:00
SpaceVim/config/plugins/asyncomplete-clang.vim

10 lines
344 B
VimL
Raw Normal View History

autocmd User asyncomplete_setup call asyncomplete#register_source(
\ asyncomplete#sources#clang#get_source_options({
\ 'config': {
\ 'clang_path': get(g:, 'asyncomplete_clang_executable', 'clang'),
\ 'clang_args': {
\ 'default': ['-I/opt/llvm/include'],
\ }
\ }
\ }))