Skip to content

Commit

Permalink
docs: Update readme with setup instructions to match telescope repo
Browse files Browse the repository at this point in the history
  • Loading branch information
zschreur committed Jul 15, 2024
1 parent e65bbc2 commit 9c2f7aa
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,29 @@
A Telescope picker for Jujutsu repos.

## Setup

Require `telescope-jj.nvim` in your Neovim package manager:
- Follow setup instructions for telescope: https://github.com/nvim-telescope/telescope.nvim?tab=readme-ov-file#installation
- Require `telescope-jj.nvim`

Using [lazy.nvim](https://github.com/folke/lazy.nvim)
```lua
"zschreur/telescope-jj.nvim",
{ "nvim-lua/plenary.nvim", lazy = true }
```

Using [vim-plug](https://github.com/junegunn/vim-plug)
```lua
Plug 'zschreur/telescope-jj.nvim'
```

Using [dein](https://github.com/Shougo/dein.vim)
```lua
call dein#add('zschreur/telescope-jj.nvim')
```

Using [packer.nvim](https://github.com/wbthomason/packer.nvim)
```lua
use {
'zschreur/telescope-jj.nvim'
}
```

Load the extension in your config with:
Expand Down

0 comments on commit 9c2f7aa

Please sign in to comment.