Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/m00qek/completion-conjure
Conjure completion source for completion-nvim
https://github.com/m00qek/completion-conjure
Last synced: about 2 months ago
JSON representation
Conjure completion source for completion-nvim
- Host: GitHub
- URL: https://github.com/m00qek/completion-conjure
- Owner: m00qek
- Created: 2020-07-18T14:44:09.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-07-18T14:45:25.000Z (over 4 years ago)
- Last Synced: 2024-08-03T13:06:21.756Z (5 months ago)
- Language: Lua
- Size: 1000 Bytes
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# completion-conjure
[Conjure](https://github.com/Olical/conjure) completion source for
[completion-nvim](https://github.com/haorenW1025/completion-nvim).## Install
This plugin requires the following plugins:
- [conjure](https://github.com/Olical/conjure)
- [nvim-lsp](https://github.com/neovim/nvim-lsp)
- [completion-nvim](https://github.com/haorenW1025/completion-nvim)To install them using [vim-plug](https://github.com/junegunn/vim-plug):
```vim
Plug 'Olical/conjure'
Plug 'neovim/nvim-lsp'
Plug 'haorenW1025/completion-nvim'
Plug 'm00qek/completion-conjure'
```## Setup
This plugin automatically registers a completion source named `conjure`. To use
it add to your Neovim configuration like
```vim
let g:completion_chain_complete_list = {
\ 'clojure': [
\ {'complete_items': ['conjure', 'lsp', 'snippet']},
\ ]
\}
```