Updates to fish config, neovim config, vim config, and git config

Fish:
- Call ssh_agent_startup everytime (has its own conditions)
- Add Bun and pnpm bin folders to PATH and aliases
- Change additions to path to use fish_add_path
- Set LIBVA_DRIVER_NAME to nvidia

Neovim:
- Format init.lua
- Add Vue language server
- Change Noice config

Vim:
- Remove eslint and stylelint as fixers
- Add Vue linting/fixing
- Use wombat theme for lightline (gruvbox gone?)
- Add Lua & Markdown formatting
- Update vim-plug

Git:
- Remove --date-order from 'git lola' alias
This commit is contained in:
mitchell 2024-06-28 18:41:12 -04:00
parent 124ea84991
commit 3ad5bd6d2f
8 changed files with 246 additions and 191 deletions

View file

@ -14,17 +14,25 @@ function define_global_variables -d 'Defines all and exclusively globally export
set -gx GOPATH $HOME/code/go
set -gx GOBIN $GOPATH/bin
set -gx BUN_INSTALL $HOME/.bun
set -gx LIBVIRT_DEFAULT_URI 'qemu:///system'
set -gx ANDROID_HOME $HOME/Android/Sdk
set -gx PATH $PATH $GOBIN \
set -gx LIBVA_DRIVER_NAME nvidia
set -gx PNPM_HOME $HOME/.local/share/pnpm
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 \
$PNPM_HOME \
$ANDROID_HOME/emulator \
$ANDROID_HOME/platform-tools \
$ANDROID_HOME/build-tools/31.0.0 \