2020-08-09 22:59:14 +00:00
|
|
|
function define_global_variables -d 'Defines all and exclusively globally exported variables'
|
|
|
|
set -gx AWS_SDK_LOAD_CONFIG true
|
|
|
|
|
|
|
|
set -gx DOTNET_ENVIRONMENT Development
|
|
|
|
set -gx DOTNET_CLI_TELEMETRY_OPTOUT true
|
|
|
|
|
|
|
|
set -gx EDITOR nvim
|
2021-08-26 17:27:32 +00:00
|
|
|
set -gx BROWSER firefox
|
2021-12-16 21:51:31 +00:00
|
|
|
set -gx DIFFPROG nvim -d
|
2020-08-09 22:59:14 +00:00
|
|
|
|
|
|
|
set -gx FZF_CTRL_T_COMMAND 'ag --hidden --ignore .git -g ""'
|
|
|
|
set -gx FZF_DEFAULT_COMMAND 'ag --hidden --ignore .git -g ""'
|
|
|
|
|
|
|
|
set -gx GOPATH $HOME/code/go
|
|
|
|
set -gx GOBIN $GOPATH/bin
|
|
|
|
|
2024-06-28 22:41:12 +00:00
|
|
|
set -gx BUN_INSTALL $HOME/.bun
|
|
|
|
|
2020-08-09 22:59:14 +00:00
|
|
|
set -gx LIBVIRT_DEFAULT_URI 'qemu:///system'
|
|
|
|
|
2022-08-10 19:16:50 +00:00
|
|
|
set -gx ANDROID_HOME $HOME/Android/Sdk
|
2022-08-02 22:32:00 +00:00
|
|
|
|
2024-06-28 22:41:12 +00:00
|
|
|
set -gx LIBVA_DRIVER_NAME nvidia
|
|
|
|
|
|
|
|
set -gx PNPM_HOME $HOME/.local/share/pnpm
|
|
|
|
|
|
|
|
fish_add_path $GOBIN \
|
2020-08-09 22:59:14 +00:00
|
|
|
$HOME/.local/bin \
|
|
|
|
$HOME/.pub-cache/bin \
|
|
|
|
$HOME/code/scripts \
|
|
|
|
$HOME/code/flutter/bin \
|
|
|
|
$HOME/.cargo/bin \
|
2022-08-02 22:32:00 +00:00
|
|
|
$HOME/.dotnet/tools \
|
2024-06-28 22:41:12 +00:00
|
|
|
$BUN_INSTALL/bin \
|
|
|
|
$PNPM_HOME \
|
2022-08-10 19:16:50 +00:00
|
|
|
$ANDROID_HOME/emulator \
|
|
|
|
$ANDROID_HOME/platform-tools \
|
2023-02-04 03:14:56 +00:00
|
|
|
$ANDROID_HOME/build-tools/31.0.0 \
|
2022-08-10 19:16:50 +00:00
|
|
|
$ANDROID_HOME/tools
|
2020-08-09 22:59:14 +00:00
|
|
|
end
|