diff options
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | docs/user/README.md | 16 |
2 files changed, 17 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index c198cc5f7..d4cf71ab5 100644 --- a/.travis.yml +++ b/.travis.yml | |||
@@ -58,7 +58,7 @@ deploy: | |||
58 | provider: pages | 58 | provider: pages |
59 | skip-cleanup: true | 59 | skip-cleanup: true |
60 | github-token: $DOCS_TOKEN # Set in the settings page of your repository, as a secure variable | 60 | github-token: $DOCS_TOKEN # Set in the settings page of your repository, as a secure variable |
61 | keep-history: true | 61 | keep-history: false |
62 | local-dir: target/website/ | 62 | local-dir: target/website/ |
63 | on: | 63 | on: |
64 | branch: master | 64 | branch: master |
diff --git a/docs/user/README.md b/docs/user/README.md index 9d03cad1c..44d6ee739 100644 --- a/docs/user/README.md +++ b/docs/user/README.md | |||
@@ -116,6 +116,22 @@ to load path and require it in `init.el` | |||
116 | [coc-vim-conf]: https://github.com/neoclide/coc.nvim/#example-vim-configuration | 116 | [coc-vim-conf]: https://github.com/neoclide/coc.nvim/#example-vim-configuration |
117 | [coc-rust-analyzer]: https://github.com/fannheyward/coc-rust-analyzer | 117 | [coc-rust-analyzer]: https://github.com/fannheyward/coc-rust-analyzer |
118 | 118 | ||
119 | ## Vim and NeoVim Alternative | ||
120 | |||
121 | * Install LanguageClient-neovim by following the instructions [here][lang-client-neovim] | ||
122 | - No extra run-time is required as this server is written in Rust | ||
123 | - The github project wiki has extra tips on configuration | ||
124 | |||
125 | * Configure by adding this to your vim/neovim config file (replacing the existing rust specific line if it exists): | ||
126 | |||
127 | ``` | ||
128 | let g:LanguageClient_serverCommands = { | ||
129 | \ 'rust': ['ra_lsp_server'], | ||
130 | \ } | ||
131 | ``` | ||
132 | |||
133 | [lang-client-neovim]: https://github.com/autozimu/LanguageClient-neovim | ||
134 | |||
119 | 135 | ||
120 | ## Sublime Text 3 | 136 | ## Sublime Text 3 |
121 | 137 | ||