mirror of
https://github.com/Superredstone/nixvim.git
synced 2026-03-08 04:28:07 +01:00
11 lines
136 B
Nix
11 lines
136 B
Nix
{ ... }:
|
|
{
|
|
plugins.telescope = {
|
|
enable = true;
|
|
keymaps = {
|
|
"<Space>f" = "find_files";
|
|
"<Space>g" = "live_grep";
|
|
};
|
|
};
|
|
}
|