From 93ce2f91b5719fed256a8f4ef262a48311fd4d37 Mon Sep 17 00:00:00 2001 From: kat witch Date: Sun, 29 Aug 2021 02:43:18 +0100 Subject: [PATCH] Use rg instead of grep in log grep aliases --- config/users/kat/base/zsh.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/users/kat/base/zsh.nix b/config/users/kat/base/zsh.nix index 1e6ed5f6..dd2f92e3 100644 --- a/config/users/kat/base/zsh.nix +++ b/config/users/kat/base/zsh.nix @@ -83,8 +83,8 @@ in logu = "journalctl --user"; log = "journalctl"; dmesg = "dmesg -HP"; - lg = "log --no-pager | grep"; - hg = "history 0 | grep"; + lg = "log --no-pager | rg"; + hg = "history 0 | rg"; }; localVariables = { _Z_DATA = "${config.xdg.dataHome}/z/data";