mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-12-26 13:14:35 +00:00
Don't override cat with bat
This commit is contained in:
parent
f0b355331e
commit
b0848fb41a
|
@ -26,7 +26,6 @@ alias rr='rm -r'
|
||||||
alias rf='rm -f'
|
alias rf='rm -f'
|
||||||
alias rrf='rm -rf'
|
alias rrf='rm -rf'
|
||||||
alias vimdiff='nvim -d'
|
alias vimdiff='nvim -d'
|
||||||
alias ccat='highlight --out-format=ansi'
|
|
||||||
|
|
||||||
# Replacements (adding flags)
|
# Replacements (adding flags)
|
||||||
alias cp='cp -iv' # Ask before overwriting, verbose
|
alias cp='cp -iv' # Ask before overwriting, verbose
|
||||||
|
@ -34,7 +33,6 @@ alias mv='mv -iv' # Ask before overwriting, verbose
|
||||||
alias rm='rm -v' # Verbose (asking here is too annoying)
|
alias rm='rm -v' # Verbose (asking here is too annoying)
|
||||||
alias wget='wget -c' # Resume wget by default
|
alias wget='wget -c' # Resume wget by default
|
||||||
alias df='df -H' # Show sizes as powers of 1000
|
alias df='df -H' # Show sizes as powers of 1000
|
||||||
command -v bat > /dev/null && alias cat='bat' # Use colored bat instead of cat
|
|
||||||
|
|
||||||
# Directory listing aliases, defaults to exa, if aviable
|
# Directory listing aliases, defaults to exa, if aviable
|
||||||
if command -v exa > /dev/null; then
|
if command -v exa > /dev/null; then
|
||||||
|
|
Loading…
Reference in a new issue