# REMnux File Analysis Container - Fish Configuration # Aliases alias ls='ls --color=auto' alias ll='ls -lah' alias grep='grep --color=auto' alias fd='fdfind' alias rg='rg --color=auto' alias analyse='fhelp' alias h='fhelp' # Fish prompt function fish_prompt set_color cyan echo -n 'remnux' set_color normal echo -n ':' set_color yellow echo -n (prompt_pwd) set_color normal echo -n '> ' end # Navi widget (Ctrl+G) if command -q navi navi widget fish | source 2>/dev/null end # Welcome message (only once per session) if not set -q _WELCOME_SHOWN set -gx _WELCOME_SHOWN 1 if test -f /usr/local/bin/welcome.sh bash /usr/local/bin/welcome.sh end end