mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-22 17:03:31 +02:00
21 lines
361 B
Nix
21 lines
361 B
Nix
{
|
|
empty = {
|
|
plugins.telescope.enable = true;
|
|
};
|
|
|
|
example = {
|
|
plugins.telescope = {
|
|
enable = true;
|
|
|
|
keymaps = {
|
|
"<leader>fg" = "live_grep";
|
|
"<C-p>" = {
|
|
action = "git_files";
|
|
desc = "Telescope Git Files";
|
|
};
|
|
};
|
|
keymapsSilent = true;
|
|
highlightTheme = "gruvbox";
|
|
};
|
|
};
|
|
}
|