Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions home/.config/fish/conf.d/path.fish
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# PATH — fish is the first-class shell, so it owns its own PATH setup
# rather than relying on rc.common (which serves bash/zsh). Mirrors:
# rc.common: export PATH="$HOME/bin:$HOME/.local/bin:$PATH"
#
# Without this, a fish login shell (e.g. SSH'd into Linux where fish is the
# login shell) never sees ~/bin, so tools installed there — notably starship
# (setup/tools.sh installs it to ~/bin) — are invisible and the starship
# prompt block in config.fish is silently skipped.
#
# fish_add_path is idempotent. -g keeps it session-global (driven entirely by
# this committed config, reproducible across machines, no per-host universal
# vars) and -p prepends in the given order.
fish_add_path -gp $HOME/bin $HOME/.local/bin
23 changes: 0 additions & 23 deletions home/.config/fish/functions/fish_prompt.fish

This file was deleted.

Loading