aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHimbeer <himbeer@disroot.org>2024-08-27 22:43:31 +0200
committerHimbeer <himbeer@disroot.org>2024-08-27 22:43:31 +0200
commitc1065cbf30fa5d32a826a2fc7326e01597ff63a4 (patch)
treed79cefaf14ff9c145088eff1c636dff89eec8f3d
parenta67880571ae3b8cd7eff6b90aa0aac4d6d268c84 (diff)
Replace ripgrep with 'grep --color' alias
-rwxr-xr-xshell_only.sh1
-rw-r--r--zsh_aliases1
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'