mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-26 01:08:52 -05:00
63 lines
1.7 KiB
Fish
63 lines
1.7 KiB
Fish
# _________________
|
|
# ___ |__ /__(_)_____ ________
|
|
# __ /| |_ /__ /_ __ `/_ ___/
|
|
# _ ___ | / _ / / /_/ /_(__ )
|
|
# /_/ |_/_/ /_/ \__,_/ /____/
|
|
#
|
|
# remap
|
|
alias doas='doas --'
|
|
abbr p pulsemixer
|
|
alias startx='startx $HOME/.config/X11/xinitrc'
|
|
alias fehwpp="feh --no-fehbg --bg-fill --randomize ~/Pictures/Wallpapers/*"
|
|
alias ls='exa -lF --icons --sort=type'
|
|
alias la='exa -laF --icons --sort=type'
|
|
alias lt='exa --tree'
|
|
alias cp='cp -vir'
|
|
alias mv='mv -vi'
|
|
alias rm='rm -vr'
|
|
alias mkdir='mkdir -pv'
|
|
abbr no 'grep -viP'
|
|
# abbr latest_pkg "expac --timefmt='%Y-%m-%d %T' '%l\t%n' | sort | tail -n 30"
|
|
alias yarn='yarn --use-yarnrc $HOME/.config/yarn/config'
|
|
abbr tmux 'TERM=screen-256color command tmux'
|
|
alias catc='bat --style plain --color=always'
|
|
# colorizing
|
|
alias grep='grep --color=auto'
|
|
alias fgrep='fgrep --color=auto'
|
|
alias egrep='egrep --color=auto'
|
|
alias diff='diff --color=auto'
|
|
alias ncdu='ncdu --color=dark'
|
|
alias ip='ip -color=always'
|
|
# vim
|
|
abbr v nvim
|
|
abbr vi 'nvim -o (fzf)'
|
|
# emacs
|
|
alias doom='$HOME/.config/emacs/bin/doom'
|
|
abbr e 'emacs -nw'
|
|
abbr em "emacsclient -c -a 'emacs'"
|
|
# rsync
|
|
abbr rsyncdir "rsync -uavP --delete-after"
|
|
abbr rsyncfile "rsync -avP"
|
|
# youtube-dl
|
|
abbr yoump3 'youtube-dl --extract-audio --audio-format mp3 --embed-thumbnail'
|
|
abbr youflac 'youtube-dl --extract-audio --audio-format flac'
|
|
abbr youbest 'youtube-dl -f bestvideo+bestaudio'
|
|
abbr youlist 'youtube-dl -f bestvideo+bestaudio --yes-playlist'
|
|
# nnn
|
|
abbr nnn 'nnn -Hc'
|
|
alias ncp="cat $XDG_CONFIG_HOME/nnn/.selection | tr '\0' '\n'"
|
|
|
|
# Lazy cd-ing
|
|
function .. ; cd .. ; end
|
|
function ... ; cd ../.. ; end
|
|
function .... ; cd ../../.. ; end
|
|
|
|
# Bad hands
|
|
abbr gti git
|
|
abbr ragner ranger
|
|
abbr claer clear
|
|
abbr sduo sudo
|
|
abbr duso sudo
|
|
abbr daso doas
|
|
abbr daos doas
|