20 lines
No EOL
484 B
Bash
20 lines
No EOL
484 B
Bash
# Editor {{{ #
|
|
alias vim='nvim'
|
|
alias vi='nvim'
|
|
alias edit='nvim'
|
|
# }}} Editor #
|
|
|
|
alias cat='bat'
|
|
alias grep='grep --color=always'
|
|
alias lsd='lsd -lh'
|
|
alias ls=lsd
|
|
alias tree='exa -lh --tree --git'
|
|
alias df=duf
|
|
alias ytv='youtube-viewer --video-player=mplayer -novideo'
|
|
alias ytdlm="youtube-dl --extract-audio --audio-format flac"
|
|
alias http='http --pretty all --style monokai'
|
|
alias srm='shred -zvu -n 5'
|
|
|
|
if [ -d $HOME/.dotnet/dotnet ]; then
|
|
alias dotnet="$HOME/.dotnet/dotnet"
|
|
fi |