summaryrefslogtreecommitdiffstats
path: root/.config/nvim/after/plugin/asyncomplete.lua
diff options
context:
space:
mode:
authorJoe <rbo@gmx.us>2023-12-21 17:07:02 +0100
committerJoe <rbo@gmx.us>2023-12-21 17:07:02 +0100
commit62946031981efcaa0183e72899cc03a001ec932f (patch)
tree944dc218c10961ab99b465641c5eeee6aa783733 /.config/nvim/after/plugin/asyncomplete.lua
parentup (diff)
downloaddotfiles-bsd-62946031981efcaa0183e72899cc03a001ec932f.tar.gz
dotfiles-bsd-62946031981efcaa0183e72899cc03a001ec932f.tar.bz2
dotfiles-bsd-62946031981efcaa0183e72899cc03a001ec932f.tar.xz
dotfiles-bsd-62946031981efcaa0183e72899cc03a001ec932f.tar.zst
dotfiles-bsd-62946031981efcaa0183e72899cc03a001ec932f.zip
up
Diffstat (limited to '')
-rw-r--r--.config/nvim/after/plugin/asyncomplete.lua13
1 files changed, 0 insertions, 13 deletions
diff --git a/.config/nvim/after/plugin/asyncomplete.lua b/.config/nvim/after/plugin/asyncomplete.lua
deleted file mode 100644
index da28c37..0000000
--- a/.config/nvim/after/plugin/asyncomplete.lua
+++ /dev/null
@@ -1,13 +0,0 @@
-vim.cmd [[
-autocmd User asyncomplete_setup call asyncomplete#register_source(
- \ asyncomplete#sources#clang#get_source_options({
- \ 'config': {
- \ 'clang_path': '/usr/bin/cc',
- \ 'clang_args': {
- \ 'default': ['-I/usr/include'],
- \ 'c': ['-std=c89', '-I/usr/include'],
- \ 'cpp': ['-std=c++98', '-I/usr/include']
- \ }
- \ }
- \ }))
-]]