added mkd alias for mkdir

This commit is contained in:
PowerUser64 2021-09-03 01:39:50 -07:00
parent 5ea3f3c345
commit e9acafe7cd

7
.zshrc
View file

@ -48,8 +48,9 @@
[ -x "$(command -v nvim)" ] && alias vim="nvim" vimdiff="nvim -d" [ -x "$(command -v nvim)" ] && alias vim="nvim" vimdiff="nvim -d"
# I do this too much by accident smh my head # I do this too much by accident smh my head
alias ':q'='exit' \ alias :q='exit' \
q='exit' \ q='exit' \
alias vim=nvim alias vim=nvim
alias sc=shellcheck alias sc=shellcheck
# rmdir is long # rmdir is long
@ -57,6 +58,8 @@
rmd='rmdir' \ rmd='rmdir' \
rd='rmdir' \ rd='rmdir' \
alias mkd=mkdir
# <<< # <<<
## Program improvements (ex: ls = ls -h) >>> ## Program improvements (ex: ls = ls -h) >>>
alias df='df -h' # Human-readable sizes alias df='df -h' # Human-readable sizes
@ -369,7 +372,7 @@
zinit load "zsh-users/zsh-completions" zinit load "zsh-users/zsh-completions"
# Themes # Themes
# zplug "themes/robbyrussell", from:oh-my-zsh, as:theme # terminal colors
if [[ -f ~/.config/shell/colors.sh ]];then if [[ -f ~/.config/shell/colors.sh ]];then
source ~/.config/shell/colors.sh source ~/.config/shell/colors.sh
else else