Update configuration

This commit is contained in:
ItsDrike 2021-04-12 15:49:06 +02:00
parent eb7ee5808f
commit 5086c42d22
No known key found for this signature in database
GPG key ID: 252D306F545351FC
3 changed files with 8 additions and 1 deletions

View file

@ -0,0 +1,5 @@
l seek 5
h seek -5
j seek -60
k seek 60
S cycle sub

View file

@ -54,6 +54,9 @@ alias wget='wget -c' # Resume wget by default
alias df='df -H' # Show sizes as powers of 1000
alias tty-clock='tty-clock -Ssc' # Terminal clock screensaver
alias vi='vim' # Nobody uses `vi` anymore, go directly to `vim`
alias cp='cp -iv' # Ask before overwriting files, verbose mode
alias mv='mv -iv' # Same as above
alias rm='rm -v' # Verbose rm
# Python
alias py3='python3'

View file

@ -9,7 +9,6 @@ export BASH_SILENCE_DEPRECATION_WARNING=1 # Hide the “default interactive shel
# Add executable directories into PATH
PATH+=":$HOME/.local/bin"
#PATH+=":/snap/bin" # Uncomment this if snap is installed
# XDG Standard paths
export XDG_CONFIG_HOME="$HOME/.config"