https://github.com/yutkat/cmp-mocword
https://github.com/yutkat/cmp-mocword
neovim-plugin nvim-cmp
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/yutkat/cmp-mocword
- Owner: yutkat
- License: mit
- Created: 2022-03-13T16:00:00.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-06T04:55:03.000Z (almost 4 years ago)
- Last Synced: 2025-03-26T00:51:18.877Z (10 months ago)
- Topics: neovim-plugin, nvim-cmp
- Language: Lua
- Homepage:
- Size: 2.93 KB
- Stars: 17
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# cmp-mocword
[mocword](https://github.com/high-moctane/mocword) completion source for [nvim-cmp](https://github.com/hrsh7th/nvim-cmp).
## Requirements
- [nvim-cmp](https://github.com/hrsh7th/nvim-cmp)
- [mocword](https://github.com/high-moctane/mocword)
- [plenary.nvim](https://github.com/nvim-lua/plenary.nvim)
## Installation
Use your package manager of choice. For example [packer.nvim](https://github.com/wbthomason/packer.nvim):
```lua
use {
'yutkat/cmp-mocword'
}
```
## Setup
```lua
require('cmp').setup({
sources = {
{ name = 'mocword' }
}
})
```