-
Notifications
You must be signed in to change notification settings - Fork 306
Servers Rust
BatmanAoD edited this page Dec 19, 2017
·
9 revisions
RLS is in the alpha stage of development. It may not work as expected in some cases.
Follow instructions at https://github.com/rust-lang-nursery/rls#setup in order to install and setup rust language server.
This code requires neovim v0.2.0+; in earlier versions, it will cause a syntax error.
if executable('rls')
au User lsp_setup call lsp#register_server({
\ 'name': 'rls',
\ 'cmd': {server_info->['rustup', 'run', 'nightly', 'rls']},
\ 'whitelist': ['rust'],
\ })
endif