- Add missing Fish configs (direnv, ssh function) - Add Tokyo Night theme for Ghostty - Complete Neovim scratch config sync - Rewrite install.sh for new structure - Add comprehensive README.md
9 lines
226 B
Fish
9 lines
226 B
Fish
# Direnv integration for fish
|
|
if type -q direnv
|
|
# Remove any existing direnv functions first
|
|
functions -e __direnv_export_eval 2>/dev/null
|
|
|
|
# Set up direnv with the correct path
|
|
eval (direnv hook fish)
|
|
end
|