A Neovim plugin for cider jack-in for REPL driven development with Clojure
neovim clojure lua

added instructions for new repo location and using vim.pack

Changed files
+21 -2
+21 -2
README.md
···
### Lazy
```lua
-
{'TreyBastian/nvim-jack-in', config = true}
```
#### Example with options
```lua
{
-
'TreyBastian/nvim-jack-in',
opts = {
location = 'vsplit',
force_powershell = true,
},
config = true,
}
```
### Options
···
### Lazy
```lua
+
{'https://tangled.org/treybastian.com/nvim-jack-in', config = true}
```
#### Example with options
```lua
{
+
'https://tangled.org/treybastian.com/nvim-jack-in',
opts = {
location = 'vsplit',
force_powershell = true,
},
config = true,
}
+
```
+
### vim.pack
+
+
```lua
+
vim.pack.add{'https://tangled.org/treybastian.com/nvim-jack-in', config = true}
+
require('nvim-jack-in').setup()
+
```
+
+
#### Example with options
+
+
```lua
+
vim.pack.add{'https://tangled.org/treybastian.com/nvim-jack-in', config = true}
+
require('nvim-jack-in').setup({
+
location = 'vsplit',
+
force_powershell = true,
+
})
+
```
+
+
### Options