Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
fix(telescope): Broken <leader>. (browse_files) keybind.
Browse files Browse the repository at this point in the history
  • Loading branch information
connorgmeean committed Aug 12, 2022
1 parent 8d12f36 commit 845b5b6
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions lua/doom/modules/features/telescope/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,14 @@ telescope.packages = {
cmd = "Telescope",
opt = true,
},
["telescope-file-browser.nvim"] = {
"nvim-telescope/telescope-file-browser.nvim",
commit = "4272c52078cc457dfaabce6fa3545e7495651d04",
cmd = "Telescope browse_files",
key = "<leader>.",
after = "telescope.nvim",
opt = true,
}
}

telescope.configs = {}
Expand Down Expand Up @@ -89,6 +97,10 @@ telescope.configs["telescope.nvim"] = function()
end
end

telescope.configs["telescope-file-browser.nvim"] = function()
require("telescope").load_extension "file_browser"
end

telescope.binds = function()
local utils = require("doom.utils")
local is_module_enabled = utils.is_module_enabled
Expand Down

0 comments on commit 845b5b6

Please sign in to comment.