diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2019-12-16 15:19:12 +0900 |
---|---|---|
committer | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2019-12-16 15:19:12 +0900 |
commit | bd7a6b89908a6ed7c2b133bb9ce61a811e0c54d8 (patch) | |
tree | 48bf9340517f567c705b97dbd916b0c5be46bfa0 /README.md | |
parent | ec4fc454429d2a5109a6e8487fe71261e521f399 (diff) | |
download | vim-lsp-settings-bd7a6b89908a6ed7c2b133bb9ce61a811e0c54d8.tar.gz vim-lsp-settings-bd7a6b89908a6ed7c2b133bb9ce61a811e0c54d8.tar.bz2 vim-lsp-settings-bd7a6b89908a6ed7c2b133bb9ce61a811e0c54d8.zip |
Update README.md
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 20 |
1 files changed, 19 insertions, 1 deletions
@@ -4,7 +4,25 @@ Auto configurations for Language Server for vim-lsp ## Instroduction -Language Servers is not easily to install. +Language Servers is not easily to install. Visual Studio Code provide easy way +to install/update Language Server and Language Server Client. This plugin +provide same feature on Vim. + +## Usage + +If you install clangd always, you can use clangd for C/C++. But if you install clang with named clangd-6.0, you can replace executable like below: + +```vim +let g:lsp_settings = { +\ 'clangd': {'cmd': ['clangd-6.0']} +\} +``` + +If you install ruby but not solargraph, you can install solargraph with following command. + +``` +:LspInstallServer +``` ## License |