tmux-dev-env-configuration/dotfiles/.config/fish/config/abbr.fish

27 lines
376 B
Fish

# Abbreviations
# Git
abbr gc git commit -m
abbr gp git push origin master
abbr gs git status
# Navigation
abbr pd prevd
# Programs
# Neovim
if type nvim &> /dev/null
abbr vim nvim
end
# Batcat
if type batcat &> /dev/null
abbr cat batcat
end
# Ripgrep
if type rg &> /dev/null
abbr grep rg
end