17 lines
258 B
Nix
17 lines
258 B
Nix
{ ... }: {
|
|
text = ''
|
|
require("telescope").setup{
|
|
defaults = {
|
|
mappings = {
|
|
i = {
|
|
["<Tab>"] = "move_selection_previous",
|
|
["<S-Tab>"] = "move_selection_next",
|
|
},
|
|
},
|
|
},
|
|
extensions = { },
|
|
pickers = { },
|
|
}
|
|
'';
|
|
}
|