diff --git a/home/.config/mpv/input.conf b/home/.config/mpv/input.conf new file mode 100644 index 0000000..d614b15 --- /dev/null +++ b/home/.config/mpv/input.conf @@ -0,0 +1,5 @@ +l seek 5 +h seek -5 +j seek -60 +k seek 60 +S cycle sub diff --git a/home/.config/sh/aliases b/home/.config/sh/aliases index 6cc8c45..c62f3a9 100755 --- a/home/.config/sh/aliases +++ b/home/.config/sh/aliases @@ -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' diff --git a/home/.config/sh/environ b/home/.config/sh/environ index 079c2fe..b472da3 100755 --- a/home/.config/sh/environ +++ b/home/.config/sh/environ @@ -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"