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

16 lines
199 B
Nix
Raw Normal View History

2024-04-06 03:03:58 +03:00
{ ... }: {
text = ''
require("telescope").setup{
defaults = {
mappings = {
i = {
["<C-?>"] = "which_key",
}
}
},
extensions = { },
pickers = { },
}
'';
}