add telescope-file-browser

This commit is contained in:
Zeke 2023-07-30 13:45:32 -05:00
parent 2488245f0b
commit 290e2d199e
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,13 @@
local tfb = require("telescope")
vim.api.nvim_set_keymap(
"n",
"<space>fb",
":Telescope file_browser<CR>",
{ noremap = true }
)
return { tfb.setup(),
tfb.load_extension "file_browser",
}