dotfiles/fish/config.fish

16 lines
327 B
Fish

if status is-interactive
# Commands to run in interactive sessions can go here
end
set -gx EDITOR micro
abbr -a -- o open
abbr -a -- l la
abbr -a -- m micro
abbr -a -- g git
abbr -a -- a 'git add'
abbr -a -- c 'git commit'
abbr -a -- p 'git push'
abbr -a -- q 'git pull'
abbr -a -- s 'git status'
abbr -a -- t 'gio trash'