zsh abbreviations
This commit is contained in:
5
config/.config/zsh-abbr/user-abbreviations
Normal file
5
config/.config/zsh-abbr/user-abbreviations
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
abbr "bb"="blaze build"
|
||||||
|
abbr "bq"="blaze query"
|
||||||
|
abbr "br"="blaze run"
|
||||||
|
abbr "ds_clean"="find ./ -name \".DS_Store\" -depth -exec rm {} \;"
|
||||||
|
abbr "mux"="tmuxinator"
|
@ -18,7 +18,7 @@ export DEVKITPRO=/opt/devkitpro
|
|||||||
export DEVKITARM=${DEVKITPRO}/devkitARM
|
export DEVKITARM=${DEVKITPRO}/devkitARM
|
||||||
export DEVKITPPC=${DEVKITPRO}/devkitPPC
|
export DEVKITPPC=${DEVKITPRO}/devkitPPC
|
||||||
|
|
||||||
source ~/.aliases.sh
|
source ~/abbreviations.zsh
|
||||||
|
|
||||||
if [[ -f "$HOME/use_google" ]]; then
|
if [[ -f "$HOME/use_google" ]]; then
|
||||||
source $HOME/.bash_profile.google
|
source $HOME/.bash_profile.google
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
export ABBR_QUIET=1
|
||||||
alias grep='grep --colour'
|
alias grep='grep --colour'
|
||||||
abbr vim='nvim'
|
abbr vim='nvim'
|
||||||
abbr vimdiff='nvim -d'
|
abbr vimdiff='nvim -d'
|
||||||
@ -21,3 +22,4 @@ swap_files () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function zipdiff() { diff -W200 -y <(unzip -vql "$1" | sort -k8) <(unzip -vql "$2" | sort -k8); }
|
function zipdiff() { diff -W200 -y <(unzip -vql "$1" | sort -k8) <(unzip -vql "$2" | sort -k8); }
|
||||||
|
export ABBR_QUIET=0
|
||||||
|
Reference in New Issue
Block a user