diff options
Diffstat (limited to 'lua/plugins/telescope.lua')
| -rw-r--r-- | lua/plugins/telescope.lua | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/lua/plugins/telescope.lua b/lua/plugins/telescope.lua index dcf6b9e..7e70bd5 100644 --- a/lua/plugins/telescope.lua +++ b/lua/plugins/telescope.lua @@ -142,12 +142,12 @@ telescope.setup({ telescope.load_extension("file_browser") -vim.keymap.set("n", ";f", function() - builtin.find_files({ - no_ignore = false, - hidden = true, - }) -end) +--vim.keymap.set("n", ";f", function() +-- builtin.find_files({ +-- no_ignore = false, +-- hidden = true, +-- }) +--end) vim.keymap.set("n", ";r", function() builtin.live_grep() end) @@ -163,15 +163,15 @@ end) vim.keymap.set("n", ";e", function() builtin.diagnostics() end) -vim.keymap.set("n", "sf", function() - telescope.extensions.file_browser.file_browser({ - path = "%:p:h", - cwd = telescope_buffer_dir(), - respect_gitignore = false, - hidden = true, - grouped = true, - previewer = false, - initial_mode = "normal", - layout_config = { height = 40 }, - }) -end) +--vim.keymap.set("n", "sf", function() +-- telescope.extensions.file_browser.file_browser({ +-- path = "%:p:h", +-- cwd = telescope_buffer_dir(), +-- respect_gitignore = false, +-- hidden = true, +-- grouped = true, +-- previewer = false, +-- initial_mode = "normal", +-- layout_config = { height = 40 }, +-- }) +--end) |
