dotfiles/.config/fish/config.fish

37 lines
1008 B
Fish
Raw Normal View History

set -gx EDITOR nvim
set -gx GOPATH $HOME/Documents/go
set -gx GOBIN $GOPATH/bin
set -gx DOTNET_ENVIRONMENT Development
set -gx DOTNET_CLI_TELEMETRY_OPTOUT true
2019-08-23 13:43:41 +00:00
set -gx PATH $PATH $GOBIN \
$HOME/.pub-cache/bin \
$HOME/Documents/scripts \
2019-08-23 13:43:41 +00:00
$HOME/Documents/flutter/bin \
$HOME/.cargo/bin \
2020-02-01 00:56:40 +00:00
$HOME/.dotnet/tools
command -sq kitty; and kitty + complete setup fish | source
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