mirror of
https://github.com/mitchell/dotfiles.git
synced 2025-06-19 20:55:34 +00:00
- Neovim: - Migrate from vim-plug to lazy.nvim. - Refactor config (`init.lua`, `config.vim`). - Replace Coq with blink.cmp, add CodeCompanion. - Fish: - Add aliases (`cl`, `ai`), env vars (`ANDROID_HOME`, `PYENV`). - Update keybindings and conditional tool initialization (starship, zoxide, fzf, pyenv). - Refine ASDF/Homebrew setup. - Git: Add aliases (`rs`, `rss`, `ap`). - Other: Update SKHD bindings and WezTerm path/settings.
44 lines
1.2 KiB
Fish
44 lines
1.2 KiB
Fish
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
|
|
set -gx BROWSER firefox
|
|
set -gx DIFFPROG nvim -d
|
|
|
|
set -gx FZF_CTRL_T_COMMAND 'fd --type f --type d --hidden --exclude ".git/"'
|
|
set -gx FZF_DEFAULT_COMMAND 'fd --type f --type d --hidden --exclude ".git/"'
|
|
set -gx FZF_ALT_C_COMMAND 'fd --type d --hidden --exclude ".git/"'
|
|
|
|
set -gx GOPATH $HOME/code/go
|
|
set -gx GOBIN $GOPATH/bin
|
|
|
|
set -gx GTK_THEME Kanagawa-BL
|
|
|
|
set -gx BUN_INSTALL $HOME/.bun
|
|
|
|
set -gx LIBVIRT_DEFAULT_URI 'qemu:///system'
|
|
|
|
if test (uname) = "Darwin"
|
|
set -gx ANDROID_HOME $HOME/Library/Android/Sdk
|
|
else
|
|
set -gx ANDROID_HOME $HOME/Android/Sdk
|
|
end
|
|
|
|
set -gx PYENV_ROOT $HOME/.pyenv
|
|
|
|
fish_add_path $GOBIN \
|
|
$HOME/.local/bin \
|
|
$HOME/.pub-cache/bin \
|
|
$HOME/code/scripts \
|
|
$HOME/code/flutter/bin \
|
|
$HOME/.cargo/bin \
|
|
$HOME/.dotnet/tools \
|
|
$BUN_INSTALL/bin \
|
|
$PYENV_ROOT/bin \
|
|
$ANDROID_HOME/emulator \
|
|
$ANDROID_HOME/platform-tools
|
|
end
|