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

17 lines
241 B
Nix
Raw Normal View History

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