16 lines
480 B
Lua
16 lines
480 B
Lua
-- This is disabled because both snacks and fzf do a better job.
|
|
return {
|
|
"nvim-telescope/telescope.nvim",
|
|
enabled = false,
|
|
keys = {
|
|
-- Switch the default keybind to switch buffers instead of find files
|
|
{
|
|
"<leader><space>",
|
|
"<cmd>Telescope buffers sort_mru=true sort_lastused=true<cr>",
|
|
desc = "Open Files",
|
|
},
|
|
-- Disable the <leader><comma> since it's so hard to type and redundant with the above.
|
|
{ "<leader><comma>", false },
|
|
},
|
|
}
|