From 0f94a0ed0bc0808fcb7aac29eb8a5ac91b42e514 Mon Sep 17 00:00:00 2001 From: Shougo Matsushita Date: Thu, 4 Apr 2024 13:36:30 +0900 Subject: [PATCH] Update README --- README.md | 42 ------------------------------------------ 1 file changed, 42 deletions(-) diff --git a/README.md b/README.md index 3b8866b..879838a 100644 --- a/README.md +++ b/README.md @@ -61,45 +61,3 @@ Ddu.vim requires both Deno 1.38+ and denops.vim. **NOTE:** Ddu.vim does not include any extra plugins. You must install them you want manually. You can search ddu plugins from [here](https://github.com/topics/ddu-vim). - -### For vim-plug - -```vim -call plug#begin() - -Plug 'vim-denops/denops.vim' -Plug 'Shougo/ddu.vim' - -" Install your UIs - -" Install your sources - -" Install your filters - -" Install your kinds - -" Install your columns - -call plug#end() -``` - -### For dein.vim - -```vim -call dein#begin() - -call dein#add('vim-denops/denops.vim') -call dein#add('Shougo/ddu.vim') - -" Install your UIs - -" Install your sources - -" Install your filters - -" Install your kinds - -" Install your columns - -call dein#end() -```