telescope: added keybind for live_grep
This commit is contained in:
parent
0256cebaca
commit
96fa2296fa
|
@ -1,4 +1,5 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
plugins.telescope = {
|
plugins.telescope = {
|
||||||
enable = true;
|
enable = true;
|
||||||
extensions = {
|
extensions = {
|
||||||
|
@ -17,6 +18,11 @@
|
||||||
action = "find_files";
|
action = "find_files";
|
||||||
options.desc = "Find project files";
|
options.desc = "Find project files";
|
||||||
};
|
};
|
||||||
|
"<leader>f" = {
|
||||||
|
action = "live_grep";
|
||||||
|
options.desc = "Livegrep";
|
||||||
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue