diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 23 |
1 files changed, 21 insertions, 2 deletions
@@ -8,22 +8,41 @@ Jack in to CLJ & Leiningen REPLs from Neovim. Inspired by [vim-jack-in](https:// ### Lazy ```lua -{'TreyBastian/nvim-jack-in', config = true} +{'https://tangled.org/treybastian.com/nvim-jack-in', config = true} ``` #### Example with options ```lua { - 'TreyBastian/nvim-jack-in', + '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 #### `clj_dependencies` |
