add telescope-file-browser
This commit is contained in:
parent
2488245f0b
commit
290e2d199e
|
@ -13,4 +13,8 @@ return {
|
||||||
|
|
||||||
"jay-babu/mason-null-ls.nvim",
|
"jay-babu/mason-null-ls.nvim",
|
||||||
"ThePrimeagen/vim-be-good",
|
"ThePrimeagen/vim-be-good",
|
||||||
|
{
|
||||||
|
"nvim-telescope/telescope-file-browser.nvim",
|
||||||
|
dependencies = { "nvim-telescope/telescope.nvim", "nvim-lua/plenary.nvim" }
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -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",
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue