Skip to content

Commit

Permalink
feat(fuzzy-finder): add telescope-zoxide (#452)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSast authored Jul 17, 2023
1 parent b0bcdda commit 5975749
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lua/astrocommunity/fuzzy-finder/telescope-zoxide/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# telescope-zoxide

An extension for telescope.nvim that allows you operate zoxide within Neovim.

**Repository:** <https://github.com/jvgrootveld/telescope-zoxide>
12 changes: 12 additions & 0 deletions lua/astrocommunity/fuzzy-finder/telescope-zoxide/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
return {
"nvim-telescope/telescope.nvim",
dependencies = { "jvgrootveld/telescope-zoxide" },
keys = {
{
"<leader>fz",
"<cmd>Telescope zoxide list<CR>",
desc = "Find directories",
},
},
opts = function() require("telescope").load_extension "zoxide" end,
}

0 comments on commit 5975749

Please sign in to comment.