Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ A telescope picker for all functions above.

## ⚙️ Installation

With packer
With Lazy

```lua
{
Expand All @@ -94,7 +94,22 @@ With packer
-- to show diff splits and open commits in browser
"tpope/vim-fugitive",
},
},
}
```
With Packer

```lua
use({
"aaronhallaert/ts-advanced-git-search.nvim",
config = function()
require("telescope").load_extension("advanced_git_search")
end,
requires = {
"nvim-telescope/telescope.nvim",
-- to show diff splits and open commits in browser
"tpope/vim-fugitive",
},
})
```

### Prerequisites
Expand Down