Skip to content

Commit

Permalink
feat(file-explorer): Add telescope-file-browser.nvim (#818)
Browse files Browse the repository at this point in the history
  • Loading branch information
Uzaaft committed Apr 1, 2024
1 parent b1584b9 commit 5de68a2
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# telescope-file-browser.nvim

File Browser extension for telescope.nvim

**Repository:** <https://github.com/nvim-telescope/telescope-file-browser.nvim>
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
return {
"nvim-telescope/telescope.nvim",
dependencies = {
"nvim-telescope/telescope-file-browser.nvim",
"nvim-lua/plenary.nvim",
{
"AstroNvim/astrocore",
opts = {
mappings = {
n = {
["<Leader>fe"] = { "<Cmd>Telescope file_browser<CR>", desc = "Open File browser" },
},
},
},
},
},
opts = function() require("telescope").load_extension "file_browser" end,
}

0 comments on commit 5de68a2

Please sign in to comment.