1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-24 02:50:03 +08:00
SpaceVim/config/plugins/asyncomplete-clang.vim
Wang Shidong 3f32e6f379
Add asyncomplete-clang (#1671)
* Add asyncomplete-clang

* Update config
2018-04-30 13:31:34 +08:00

10 lines
344 B
VimL

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'],
\ }
\ }
\ }))