diff --git a/.config/fish/functions/cat.fish b/.config/fish/functions/cat.fish index 41a0453..c4462bd 100644 --- a/.config/fish/functions/cat.fish +++ b/.config/fish/functions/cat.fish @@ -1,7 +1,9 @@ -function cat --description 'alias cat to bat, ccat, or cat' - if command -sq bat - bat --theme Dracula $argv; - else if command -sq ccat +function cat --description 'alias cat to ccat' + # if command -sq bat + # bat --theme Dracula $argv; + # else if command -sq ccat + # ccat $argv; + if command -sq ccat ccat $argv; else set catpath (which cat)