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

17 lines
258 B
Nix
Raw Normal View History

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