Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/uga-rosa/cmp-denippet

nvim-cmp source for denippet.vim
https://github.com/uga-rosa/cmp-denippet

Last synced: about 2 months ago
JSON representation

nvim-cmp source for denippet.vim

Awesome Lists containing this project

README

        

# cmp-denippet

nvim-cmp source for [denippet.vim](https://github.com/uga-rosa/denippet.vim)

# Setup

```lua
require("cmp")({
snippet = {
expand = function(args)
vim.fn["denippet#anonymous"](args.body)
end,
},
sources = {
{ name = "denippet" },
},
})
```