From c80a54e42b52ce297f0f2f71af23c562832025c7 Mon Sep 17 00:00:00 2001 From: TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> Date: Fri, 24 Jan 2025 20:35:27 +0900 Subject: init --- ar/.config/LazyVim/lua/plugins/file-browser.lua | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ar/.config/LazyVim/lua/plugins/file-browser.lua (limited to 'ar/.config/LazyVim/lua/plugins/file-browser.lua') diff --git a/ar/.config/LazyVim/lua/plugins/file-browser.lua b/ar/.config/LazyVim/lua/plugins/file-browser.lua new file mode 100644 index 0000000..9a9ea2f --- /dev/null +++ b/ar/.config/LazyVim/lua/plugins/file-browser.lua @@ -0,0 +1,15 @@ +return { + "nvim-telescope/telescope-file-browser.nvim", + dependencies = { "nvim-telescope/telescope.nvim", "nvim-lua/plenary.nvim" }, + keys = { + { + mode = "n", + "sB", + ":Telescope file_browser path=%:p:h=%:p:h", + desc = "Browse Files", + }, + }, + config = function() + require("telescope").load_extension("file_browser") + end, +} -- cgit v1.2.3