nix/home/config/nvim/module/plugin/Telescope.nix

18 lines
306 B
Nix
Raw Normal View History

{ ... }:
{
text = ''
require("telescope").setup{
2024-10-24 10:08:04 +03:00
defaults = {
mappings = {
i = {
["<Tab>"] = "move_selection_previous",
["<S-Tab>"] = "move_selection_next",
},
},
},
extensions = { },
pickers = { },
}
'';
2024-04-06 03:03:58 +03:00
}