Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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'

```