You've already forked dotfiles
18 lines
695 B
Plaintext
18 lines
695 B
Plaintext
# Aliases Universal
|
|
alias rm="rm -I" # Prompt for removal of more than three files or recursively to give some protection of mistakes
|
|
alias mv="mv -i" # Prompt before moving files
|
|
alias df="df -h" # Always use the human readable formatting
|
|
alias du="du -h -d 1" # Always use human readable format and only for the current dir by default
|
|
alias k="killall" # Quick killall
|
|
alias p="ps ux | grep $1" # Quick process search
|
|
alias n="$EDITOR" # Just open the usual editor
|
|
|
|
# Switch directories
|
|
alias repos="cd ~/repos/"
|
|
alias dot="cd ~/repos/dotfiles"
|
|
|
|
# Note taking
|
|
alias todo="nvim ~/.zettelkasten/TODO.md"
|
|
alias note="nvim -c ':Telekasten new_note'"
|
|
alias today="nvim -c ':Telekasten goto_today'"
|