mirror of
https://github.com/SeriousBug/dotfiles
synced 2025-12-07 05:22:34 -06:00
Migrated all high-priority development configs to Dotter management: - Neovim: Lazy.nvim setup with hop and mini-surround plugins - Fish Shell: Complete config with Fisher plugins (done, z, sponge) - Zellij: Terminal multiplexer with vim-like keybindings - Htop: System monitor preferences - ASDF: Version manager configuration Templates created for git/gitconfig and fish/config.fish to handle machine-specific variables (git_name, git_email, brew_path). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
23 lines
558 B
Fish
23 lines
558 B
Fish
if status is-interactive
|
|
# Commands to run in interactive sessions can go here
|
|
end
|
|
|
|
eval ({{brew_path}}/bin/brew shellenv)
|
|
set -gx ASDF_DIR {{brew_path}}/opt/asdf/libexec
|
|
|
|
# ASDF configuration code
|
|
if test -z $ASDF_DATA_DIR
|
|
set _asdf_shims "$HOME/.asdf/shims"
|
|
else
|
|
set _asdf_shims "$ASDF_DATA_DIR/shims"
|
|
end
|
|
|
|
# Do not use fish_add_path (added in Fish 3.2) because it
|
|
# potentially changes the order of items in PATH
|
|
if not contains $_asdf_shims $PATH
|
|
set -gx --prepend PATH $_asdf_shims
|
|
end
|
|
set --erase _asdf_shims
|
|
zoxide init fish | source
|
|
|