From 7b756fdfb98436cf2bf794dcc0561c0eca14f934 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emmanuel=20BENO=C3=8ET?= Date: Sat, 24 Jun 2023 17:14:52 +0200 Subject: [PATCH] plugins - Re-added completion plugins --- bundles-init/async.vim.load.vim | 1 - bundles-init/asyncomplete-lsp.vim.load.vim | 1 - bundles-init/asyncomplete.vim.load.vim | 1 - plugins/async.vim.load.vim | 3 +++ plugins/asyncomplete-lsp.vim.load.vim | 4 ++++ plugins/asyncomplete.vim.load.vim | 4 ++++ 6 files changed, 11 insertions(+), 3 deletions(-) delete mode 100644 bundles-init/async.vim.load.vim delete mode 100644 bundles-init/asyncomplete-lsp.vim.load.vim delete mode 100644 bundles-init/asyncomplete.vim.load.vim create mode 100644 plugins/async.vim.load.vim create mode 100644 plugins/asyncomplete-lsp.vim.load.vim create mode 100644 plugins/asyncomplete.vim.load.vim diff --git a/bundles-init/async.vim.load.vim b/bundles-init/async.vim.load.vim deleted file mode 100644 index 2df99d0..0000000 --- a/bundles-init/async.vim.load.vim +++ /dev/null @@ -1 +0,0 @@ -NeoBundle 'prabirshrestha/async.vim' diff --git a/bundles-init/asyncomplete-lsp.vim.load.vim b/bundles-init/asyncomplete-lsp.vim.load.vim deleted file mode 100644 index 255519f..0000000 --- a/bundles-init/asyncomplete-lsp.vim.load.vim +++ /dev/null @@ -1 +0,0 @@ -NeoBundle 'prabirshrestha/asyncomplete-lsp.vim' diff --git a/bundles-init/asyncomplete.vim.load.vim b/bundles-init/asyncomplete.vim.load.vim deleted file mode 100644 index 51f6010..0000000 --- a/bundles-init/asyncomplete.vim.load.vim +++ /dev/null @@ -1 +0,0 @@ -NeoBundle 'prabirshrestha/asyncomplete.vim' diff --git a/plugins/async.vim.load.vim b/plugins/async.vim.load.vim new file mode 100644 index 0000000..d0ab7f7 --- /dev/null +++ b/plugins/async.vim.load.vim @@ -0,0 +1,3 @@ +call dein#add('prabirshrestha/async.vim', #{ + \ lazy: 1, + \ }) diff --git a/plugins/asyncomplete-lsp.vim.load.vim b/plugins/asyncomplete-lsp.vim.load.vim new file mode 100644 index 0000000..9abf418 --- /dev/null +++ b/plugins/asyncomplete-lsp.vim.load.vim @@ -0,0 +1,4 @@ +call dein#add('prabirshrestha/asyncomplete-lsp.vim', #{ + \ lazy: 1, + \ on_event: 'VimEnter', + \ }) diff --git a/plugins/asyncomplete.vim.load.vim b/plugins/asyncomplete.vim.load.vim new file mode 100644 index 0000000..9e94672 --- /dev/null +++ b/plugins/asyncomplete.vim.load.vim @@ -0,0 +1,4 @@ +call dein#add('prabirshrestha/asyncomplete.vim', #{ + \ lazy: 1, + \ on_event: 'VimEnter', + \ })