nix-community.nixvim/tests/test-sources/plugins/telescope/default.nix

22 lines
369 B
Nix
Raw Normal View History

{
empty = {
plugins.telescope.enable = true;
};
example = {
plugins.telescope = {
enable = true;
keymaps = {
"<leader>fg" = "live_grep";
"<C-p>" = {
action = "git_files";
options.desc = "Telescope Git Files";
};
};
keymapsSilent = true;
highlightTheme = "gruvbox";
};
};
}