File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed
Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -172,12 +172,28 @@ text objects to behave.
172172
173173Make 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
176178Plug 'kana/vim-textobj-user'
177179Plug '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
You can’t perform that action at this time.
0 commit comments