diff options
| author | Thomas Vanbesien <tvanbesi@proton.me> | 2026-06-05 09:38:11 +0200 |
|---|---|---|
| committer | Thomas Vanbesien <tvanbesi@proton.me> | 2026-06-05 11:01:40 +0200 |
| commit | 1738c0f2f01bdf3491ae366470fde0fc7dae6f98 (patch) | |
| tree | 48f08591baf86558d5430b8ff6e25b5a6a4051ba | |
| parent | da77bf501ad9a02dd5922dd4e187378bb983d12a (diff) | |
| download | dotfiles-1738c0f2f01bdf3491ae366470fde0fc7dae6f98.tar.gz dotfiles-1738c0f2f01bdf3491ae366470fde0fc7dae6f98.zip | |
misc(bash): add aliases
| -rw-r--r-- | .config/bash/bashrc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.config/bash/bashrc b/.config/bash/bashrc index a44bae1..e9816c4 100644 --- a/.config/bash/bashrc +++ b/.config/bash/bashrc @@ -27,6 +27,9 @@ shopt -s extglob # extended pattern matching (like `?(a|b|c)`) alias r="fc -s" # See <term://bash -c 'fc --help'> alias wl-copy="wl-copy --trim-newline" alias trash='gio trash' +alias l='ls -l --human-readable' +alias mv='mv --interactive' # Prompt before overwriting +alias cp='cp --interactive' # Prompt before overwriting export INPUTRC="$HOME/.config/bash/inputrc" # Readline configuration export VISUAL=nvim EDITOR=nvim # used by various programs like `git`, `fc`, `man`, … |
