From 9731c271c3effa8f85a665bc742d71778fb5faf8 Mon Sep 17 00:00:00 2001 From: Shinya Ohyanagi Date: Wed, 5 Feb 2020 23:01:04 +0900 Subject: Fix list only required plugin --- README.md | 2 -- 1 file changed, 2 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 2cbfdd9..85da84f 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,6 @@ For [vim-plug](https://github.com/junegunn/vim-plug) plugin manager: ```viml Plug 'prabirshrestha/async.vim' -Plug 'prabirshrestha/asyncomplete.vim' -Plug 'prabirshrestha/asyncomplete-lsp.vim' Plug 'prabirshrestha/vim-lsp' Plug 'mattn/vim-lsp-settings' ``` -- cgit v1.2.3-54-g00ecf From 370c0f8f93ebb8b4ef855d4123f104d5ca3d3e71 Mon Sep 17 00:00:00 2001 From: Shinya Ohyanagi Date: Wed, 5 Feb 2020 23:12:17 +0900 Subject: Fix add autocompletion plugins --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'README.md') diff --git a/README.md b/README.md index 85da84f..6440a7b 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,13 @@ Plug 'mattn/vim-lsp-settings' You need to install both [vim-lsp](https://github.com/prabirshrestha/vim-lsp) and its accompanying plugins and vim-lsp-settings. +If you want to use autocompletion plugin, you can use followings. + +```viml +Plug 'prabirshrestha/asyncomplete.vim' +Plug 'prabirshrestha/asyncomplete-lsp.vim' +``` + ### Notice If you use plugin manager that is merging plugins (ex. dein), Please setting stop merging work(ex. dein / merged = 0) or set `g:lsp_settings_servers_dir` option to a different directory from the vim-lsp's default. -- cgit v1.2.3-54-g00ecf From 10f0c14ebd4a219c27a53c9641162cf038088f90 Mon Sep 17 00:00:00 2001 From: hrsh7th Date: Thu, 6 Feb 2020 17:00:31 +0900 Subject: Add deoplete.nvim to autocomplete plugin section in README.md --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'README.md') diff --git a/README.md b/README.md index 6440a7b..01ee94b 100644 --- a/README.md +++ b/README.md @@ -27,11 +27,18 @@ You need to install both [vim-lsp](https://github.com/prabirshrestha/vim-lsp) an If you want to use autocompletion plugin, you can use followings. +#### asyncomplete.vim ```viml Plug 'prabirshrestha/asyncomplete.vim' Plug 'prabirshrestha/asyncomplete-lsp.vim' ``` +#### deoplete.nvim +```viml +Plug 'Shougo/deoplete.nvim' +Plug 'lighttiger2505/deoplete-vim-lsp' +``` + ### Notice If you use plugin manager that is merging plugins (ex. dein), Please setting stop merging work(ex. dein / merged = 0) or set `g:lsp_settings_servers_dir` option to a different directory from the vim-lsp's default. -- cgit v1.2.3-54-g00ecf From c1e88b1abecf633c2850f5c515d6255b5b995c44 Mon Sep 17 00:00:00 2001 From: August Janse Date: Mon, 10 Feb 2020 09:43:13 +0100 Subject: Clarify usage --- README.md | 1 + 1 file changed, 1 insertion(+) (limited to 'README.md') diff --git a/README.md b/README.md index 01ee94b..dad82a3 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,7 @@ But when rebuild the cache, any merging plugin manager erases old cached files(i You can change the directory to install servers by set `g:lsp_settings_servers_dir` option in full path. ## Usage +While editing a file with a supported filetype: ``` :LspInstallServer -- cgit v1.2.3-54-g00ecf