diff --git a/config/plugins/telescope/default.nix b/config/plugins/telescope/default.nix index f038d2b..3bd0af8 100644 --- a/config/plugins/telescope/default.nix +++ b/config/plugins/telescope/default.nix @@ -1,4 +1,5 @@ -{ pkgs, ... }: { +{ pkgs, ... }: +{ plugins.telescope = { enable = true; extensions = { @@ -17,6 +18,11 @@ action = "find_files"; options.desc = "Find project files"; }; + "f" = { + action = "live_grep"; + options.desc = "Livegrep"; + }; + }; }; } diff --git a/flake.nix b/flake.nix index 022822a..5e044ef 100644 --- a/flake.nix +++ b/flake.nix @@ -1,4 +1,4 @@ -{ + description = "neo2005 flake"; # Flake reused directly from https://github.com/Ahwxorg/nixvim-config/