mirror of
https://github.com/ItsDrike/dotfiles.git
synced 2024-11-10 02:39:40 +00:00
Update configuration
This commit is contained in:
parent
eb7ee5808f
commit
5086c42d22
5
home/.config/mpv/input.conf
Normal file
5
home/.config/mpv/input.conf
Normal file
|
@ -0,0 +1,5 @@
|
|||
l seek 5
|
||||
h seek -5
|
||||
j seek -60
|
||||
k seek 60
|
||||
S cycle sub
|
|
@ -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'
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue