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

https://github.com/dmitmel/cmp-vim-lsp

Integration between https://github.com/hrsh7th/nvim-cmp and https://github.com/prabirshrestha/vim-lsp
https://github.com/dmitmel/cmp-vim-lsp

nvim-cmp

Last synced: 4 months ago
JSON representation

Integration between https://github.com/hrsh7th/nvim-cmp and https://github.com/prabirshrestha/vim-lsp

Awesome Lists containing this project

README

          

# cmp-vim-lsp

Integration between [nvim-cmp](https://github.com/hrsh7th/nvim-cmp) and [vim-lsp](https://github.com/prabirshrestha/vim-lsp).

## Setup

```vim
Plug 'hrsh7th/nvim-cmp'
Plug 'prabirshrestha/vim-lsp'
Plug 'dmitmel/cmp-vim-lsp'
```

```lua
require('cmp').setup({
sources = {
{ name = 'vim_lsp' },
},
})
```