mirror of https://github.com/tiyn/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
1.3 KiB
77 lines
1.3 KiB
#!/bin/sh
|
|
|
|
# bash
|
|
alias ":wq"="exit"
|
|
alias ":q"="exit"
|
|
|
|
# cd
|
|
alias ".."="cd .."
|
|
alias "..."="cd ../.."
|
|
alias "...."="cd ../../.."
|
|
alias "....."="cd ../../../.."
|
|
|
|
# cp
|
|
alias cp="cp -i"
|
|
|
|
# clear
|
|
alias c="clear"
|
|
|
|
# config
|
|
alias config="/usr/bin/git --git-dir=$HOME/.dotfiles --work-tree=$HOME"
|
|
|
|
# fzf
|
|
src() { find ~/.config/* ~/.local/bin/* -type f | fzf | xargs -r $EDITOR ;}
|
|
srd() { find ~/ownCloud/* -type f | grep ".pdf" | fzf | xargs -r $READER ;}
|
|
|
|
|
|
# grep
|
|
alias grep="grep --color=auto"
|
|
|
|
# ls(d)
|
|
alias l="lsd"
|
|
alias la="lsd -la"
|
|
alias ll="lsd -l"
|
|
alias tree="lsd --tree"
|
|
|
|
# mkdir
|
|
alias mkdir="mkdir -p"
|
|
|
|
# mount
|
|
alias mount="mount |column -t"
|
|
|
|
# mv
|
|
alias mv="mv -i"
|
|
|
|
# pacman
|
|
alias pac="sudo pacman"
|
|
|
|
# ping
|
|
alias ping="ping -c 5"
|
|
|
|
# rm
|
|
alias rm="prompt 'Are you sure?' && rm"
|
|
|
|
# root/sudo
|
|
alias su="sudo -i"
|
|
|
|
#sc-im
|
|
alias sc="sc-im"
|
|
|
|
# script
|
|
alias scriptclear="cat typescript | perl -pe 's/\e([^\[\]]|\[.*?[a-zA-Z]|\].*?\a)//g' | col -b > typescript-processed"
|
|
|
|
# tmux
|
|
alias tmux="tmux -f $XDG_CONFIG_HOME/tmux/tmux.conf"
|
|
|
|
# nvim
|
|
alias svim="sudo nvim"
|
|
alias svi="sudo nvim"
|
|
command -v nvim >/dev/null && alias vim="nvim" vimdiff="nvim -d"
|
|
command -v nvim >/dev/null && alias vi="nvim" vidiff="nvim -d"
|
|
|
|
# weather
|
|
alias weather="curl wttr.in"
|
|
|
|
#wget
|
|
alias wget="wget --hsts-file=$XDG_CACHE_HOME/wget-hsts"
|