return { { "catppuccin/nvim", name = "catppuccin", opts = { no_italic = true, no_bold = true, }, }, { "nvim-telescope/telescope.nvim", keys = { { "o", LazyVim.pick("live_grep"), desc = "Grep (Root Dir)" }, { "p", LazyVim.pick("files"), desc = "Find Files (Root Dir)" }, { ":", LazyVim.pick("commands"), desc = "Commands" }, }, opts = function(_, opts) local actions = require("telescope.actions") opts.defaults.mappings = { i = { [""] = actions.move_selection_next, [""] = actions.move_selection_previous, [""] = actions.move_selection_next, [""] = actions.move_selection_previous, [""] = actions.close, [""] = actions.close, }, n = { ["q"] = actions.close, ["o"] = actions.close, }, } end, }, }