dotfiles/.config/nvim/lua/plugins/telescope-all-recent.lua
Sergio Laín fd1a4f6702
feat(nvim): big Changes
- Null-ls changed to none-ls
- Added keymap to see none-ls buffer info
- Lualine style changed to slanted
- Neo-tree handlers
- Spectre new keymaps
- Telescope fzf options and some keybindings
- Which-key adapted to new spectre bind changes

BREAKING CHANGE: - Null-ls changed to none-ls
2023-10-01 21:35:33 +02:00

26 lines
802 B
Lua

return {
{
"prochri/telescope-all-recent.nvim",
event = "VeryLazy",
config = function()
require("telescope-all-recent").setup({
pickers = {
["workspaces.nvim#workspaces"] = {
disable = false,
sorting = "frecency",
},
["project.nvim#projects"] = {
disable = false,
sorting = "frecency",
},
["yanky.nvim#yank_history"] = {
disable = true,
},
["zoxide.nvim#zoxide"] = {
disable = true,
},
},
})
end,
},
}