Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/roxma/nvim-cm-racer
Neovim/vim8 completion for rust
https://github.com/roxma/nvim-cm-racer
autocompletion neovim nvim-completion-manager rust vim8
Last synced: about 7 hours ago
JSON representation
Neovim/vim8 completion for rust
- Host: GitHub
- URL: https://github.com/roxma/nvim-cm-racer
- Owner: roxma
- Created: 2017-04-14T02:09:33.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-27T02:39:06.000Z (over 7 years ago)
- Last Synced: 2024-08-01T15:35:41.190Z (3 months ago)
- Topics: autocompletion, neovim, nvim-completion-manager, rust, vim8
- Language: Python
- Size: 6.84 KB
- Stars: 17
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Introduction
Rust completion for [NCM](https://github.com/roxma/nvim-completion-manager),
based on the [racer command](https://github.com/phildawes/racer#installation).![screencast](https://cloud.githubusercontent.com/assets/4538941/25031134/383c5d04-20fd-11e7-8503-54f35fd80138.gif)
## Requirements
- Install and config [racer](https://github.com/phildawes/racer#installation)
Typical installation instructions:
```bash
cargo install racer
rustup component add rust-src
```## vimrc example
```vim
Plug 'roxma/nvim-completion-manager'
" rust
Plug 'rust-lang/rust.vim'
Plug 'racer-rust/vim-racer'
Plug 'roxma/nvim-cm-racer'```