diff options
| author | Trey Bastian <hello@treybastian.com> | 2025-11-25 10:42:11 +0000 |
|---|---|---|
| committer | Trey Bastian <hello@treybastian.com> | 2025-11-25 10:42:11 +0000 |
| commit | 658839730d14e48285543961875f3382886816e8 (patch) | |
| tree | 30e52ea5b53ebf09edc901c960ae82b3e1fab8a0 | |
| parent | 85120eb606ea2c8bfbce2d9c759656eeee443915 (diff) | |
added instructions for new repo location and using vim.pack
| -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` |
