mirror of
https://github.com/mitchell/dotfiles.git
synced 2025-07-15 12:46:08 +00:00
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
6 lines
183 B
Fish
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
|