diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2020-02-12 10:15:35 +0900 |
---|---|---|
committer | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2020-02-12 10:15:35 +0900 |
commit | 4f7dbef46ad09bfdb0646b607a71bfa45cc8b4b6 (patch) | |
tree | db3f12abff35968e05239052c00f2a2939fbefb3 /README.md | |
parent | 3ec4f3ff36a6cb89fec459bd9e3d9f2cd2baabdb (diff) | |
parent | c3f3518b637cfb35863976e8383fde337c7d84a2 (diff) | |
download | vim-lsp-settings-4f7dbef46ad09bfdb0646b607a71bfa45cc8b4b6.tar.gz vim-lsp-settings-4f7dbef46ad09bfdb0646b607a71bfa45cc8b4b6.tar.bz2 vim-lsp-settings-4f7dbef46ad09bfdb0646b607a71bfa45cc8b4b6.zip |
Merge branch 'master' into julia
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 17 |
1 files changed, 15 insertions, 2 deletions
@@ -19,14 +19,26 @@ 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' ``` 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. + +#### 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. @@ -38,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 |