dotfiles/.config/fish/functions/ssh_agent_startup.fish
mitchell 3ad5bd6d2f 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
2024-06-28 18:41:12 -04:00

6 lines
183 B
Fish

function ssh_agent_startup -d 'Start ssh agent and set env vars'
if test -z "$SSH_AUTH_SOCK"; and test -z "$SSH_AGENT_PID"
eval (ssh-agent -c) >/dev/null 2>&1
end
end