diff options
author | Himbeer <himbeer@disroot.org> | 2024-08-27 22:43:31 +0200 |
---|---|---|
committer | Himbeer <himbeer@disroot.org> | 2024-08-27 22:43:31 +0200 |
commit | c1065cbf30fa5d32a826a2fc7326e01597ff63a4 (patch) | |
tree | d79cefaf14ff9c145088eff1c636dff89eec8f3d | |
parent | a67880571ae3b8cd7eff6b90aa0aac4d6d268c84 (diff) |
Replace ripgrep with 'grep --color' alias
-rwxr-xr-x | shell_only.sh | 1 | ||||
-rw-r--r-- | zsh_aliases | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/shell_only.sh b/shell_only.sh index c2d8f18..bfd45b4 100755 --- a/shell_only.sh +++ b/shell_only.sh @@ -57,7 +57,6 @@ if command_exists pacman; then vim \ fzf \ openssh \ - ripgrep \ which \ gcc \ pkg-config \ diff --git a/zsh_aliases b/zsh_aliases index 7b3d1ee..3faaa62 100644 --- a/zsh_aliases +++ b/zsh_aliases @@ -1,2 +1,3 @@ alias ls='ls --color=auto' alias ยต='vim' +alias grep='grep --color' |