mirror of
https://github.com/LucasVbr/dotfiles.git
synced 2026-05-13 17:12:10 +00:00
11 lines
112 B
Plaintext
Executable File
11 lines
112 B
Plaintext
Executable File
alias ls='eza --icons'
|
|
|
|
cat() {
|
|
if [[ "$1" == *.md ]]; then
|
|
glow "$@"
|
|
else
|
|
command cat "$@"
|
|
fi
|
|
}
|
|
|