From 32770ca98564794cd16a9dd4d3d689d330c13c41 Mon Sep 17 00:00:00 2001 From: mitchell Date: Tue, 7 Jul 2020 21:40:06 -0400 Subject: [PATCH] Refactor config.fish --- .config/fish/config.fish | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/fish/config.fish b/.config/fish/config.fish index ebd3cbd..7dd58f7 100644 --- a/.config/fish/config.fish +++ b/.config/fish/config.fish @@ -4,7 +4,7 @@ function _define_variables set -gx DOTNET_ENVIRONMENT Development set -gx DOTNET_CLI_TELEMETRY_OPTOUT true - set -gx DOTNET_ROOT $HOME/.asdf/installs/dotnet-core/(command -sq dotnet; and dotnet --version) + set -gx DOTNET_ROOT $HOME/.asdf/installs/dotnet-core/(command -q dotnet; and dotnet --version) set -gx EDITOR nvim @@ -28,13 +28,13 @@ end # _source_imports loads any additional fish files in at init function _source_imports -a uname - command -sq kitty; and kitty + complete setup fish | source + command -q kitty; and kitty + complete setup fish | source switch $uname case Linux test -e ~/.asdf/asdf.fish; and source ~/.asdf/asdf.fish case Darwin - command -sq brew + command -q brew and test -e (brew --prefix asdf)/asdf.fish and source (brew --prefix asdf)/asdf.fish end