Skip to content

Commit b4324c3

Browse files
committed
add tagging policy and lazy instructions
1 parent fd61ff3 commit b4324c3

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,12 +172,28 @@ text objects to behave.
172172

173173
Make sure you have [`stack`](https://docs.haskellstack.org/en/stable/install_and_upgrade/) on your PATH!
174174

175+
For [vim-plug](https://github.com/junegunn/vim-plug):
176+
175177
```viml
176178
Plug 'kana/vim-textobj-user'
177179
Plug 'neovimhaskell/nvim-hs.vim'
178-
Plug 'isovector/cornelis', { 'do': 'stack build' }
180+
Plug 'isovector/cornelis', { 'do': 'stack build', 'tag': '*' }
181+
```
182+
183+
for [lazy.nvim](https://github.com/folke/lazy.nvim):
184+
185+
```lua
186+
{
187+
'isovector/cornelis',
188+
name = 'cornelis',
189+
ft = 'agda',
190+
build = 'stack install',
191+
dependencies = {'neovimhaskell/nvim-hs.vim', 'kana/vim-textobj-user'},
192+
version = '*',
193+
}
179194
```
180195

196+
If you are having issues, try using a tag which matches your agda major version. (e.g. for Agda `v2.7.0.1` use cornelis `v2.7.*`).
181197

182198
### Agda Version
183199

0 commit comments

Comments
 (0)