From 4dc2b58f6a9a62538bd283e8a4f166fc81ad33be Mon Sep 17 00:00:00 2001 From: Bartek Stalewski Date: Sun, 18 Apr 2021 11:14:27 +0200 Subject: [PATCH] These paths can't be hardcoded. --- zsh/aliases.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zsh/aliases.zsh b/zsh/aliases.zsh index bc485dc..9b08252 100644 --- a/zsh/aliases.zsh +++ b/zsh/aliases.zsh @@ -1,7 +1,7 @@ alias grep='grep --color' alias less='less -r' if [ $(command -v bat) ]; then - alias cat='/usr/local/bin/bat --color=always --tabs=2 --style plain --theme=Monokai\ Extended\ Bright' + alias cat='bat --color=always --tabs=2 --style plain --theme=Monokai\ Extended\ Bright' fi if [ $(command -v exa) ]; then alias ls='exa --group-directories-first' @@ -14,7 +14,7 @@ else alias ll='ls -l' fi if [ $(command -v fd) ]; then - alias fd='/usr/local/bin/fd -H -L --ignore-file ~/.config/local/fd' + alias fd='fd -H -L --ignore-file ~/.config/local/fd' fi if [ $(command -v nvim) ]; then export EDITOR='nvim'