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
- Host: GitHub
- URL: https://github.com/dmitmel/cmp-vim-lsp
- Owner: dmitmel
- License: cc0-1.0
- Created: 2021-10-26T06:43:43.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-10-26T12:47:20.000Z (over 4 years ago)
- Last Synced: 2025-10-05T04:26:46.868Z (9 months ago)
- Topics: nvim-cmp
- Language: Vim script
- Homepage:
- Size: 3.91 KB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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' },
},
})
```