aboutsummaryrefslogtreecommitdiff
path: root/.vim/after/plugin/asyncomplete.vim
diff options
context:
space:
mode:
Diffstat (limited to '.vim/after/plugin/asyncomplete.vim')
-rw-r--r--.vim/after/plugin/asyncomplete.vim11
1 files changed, 11 insertions, 0 deletions
diff --git a/.vim/after/plugin/asyncomplete.vim b/.vim/after/plugin/asyncomplete.vim
index a7d1974..9ede076 100644
--- a/.vim/after/plugin/asyncomplete.vim
+++ b/.vim/after/plugin/asyncomplete.vim
@@ -45,3 +45,14 @@ au User asyncomplete_setup call asyncomplete#register_source(asyncomplete#source
\ 'max_buffer_size': 5000000,
\ },
\ }))
+
+packadd asyncomplete-omni.vim
+autocmd User asyncomplete_setup call asyncomplete#register_source(asyncomplete#sources#omni#get_source_options({
+\ 'name': 'omni',
+\ 'allowlist': ['*'],
+\ 'blocklist': [],
+\ 'completor': function('asyncomplete#sources#omni#completor'),
+\ 'config': {
+\ 'show_source_kind': 1,
+\ },
+\ }))