From 658839730d14e48285543961875f3382886816e8 Mon Sep 17 00:00:00 2001 From: Trey Bastian Date: Tue, 25 Nov 2025 10:42:11 +0000 Subject: added instructions for new repo location and using vim.pack --- README.md | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index ee40b33..03d4a99 100644 --- a/README.md +++ b/README.md @@ -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` -- cgit v1.2.3