fish: add abbreviations

This commit is contained in:
Charles Gould 2020-04-28 21:29:42 -05:00
parent 04d0c98953
commit f5475905c8

View File

@ -38,9 +38,12 @@ set -g __fish_git_prompt_color_stashstate cyan
set -g __fish_git_prompt_color_untrackedfiles cyan
set -g __fish_git_prompt_color_upstream yellow
# Abbreviations
abbr -a -g d docker
abbr -a -g vi nvim
abbr -a -g vim nvim
# Aliases
alias vi='nvim'
alias vim='nvim'
alias which='command -s'
function ..; cd ..; end
function ...; cd ../..; end