Move aliases into config.fish and add ruby support to vimrc

This commit is contained in:
mitchell 2020-04-17 17:36:44 -04:00
parent 2097f04323
commit bad8be4a2c
9 changed files with 28 additions and 26 deletions

View file

@ -15,3 +15,22 @@ command -sq asdf; and source (brew --prefix asdf)/asdf.fish
# The next line updates PATH for the Google Cloud SDK.
# if test -f '/Users/m/Documents/google-cloud-sdk/path.fish.inc'; source '/Users/m/Documents/google-cloud-sdk/path.fish.inc'; end
# aliases
function cat; bat --theme ansi-dark $argv; end
function cp; rsync -aP $argv; end
function dm; docker-machine $argv; end
function dm-env; eval (docker-machine env $argv); end
function goland; open -a Goland .; end
function rider; open -a Rider .; end
function v; nvim (fzf); end
function vg; vagrant $argv; end
function webstorm; open -a Webstorm .; end