| Server IP : 80.74.154.100 / Your IP : 216.73.217.0 Web Server : Apache System : Linux marissa.metanet.ch 4.18.0-553.141.2.lve.el7h.x86_64 #1 SMP Wed Jul 8 17:20:31 UTC 2026 x86_64 User : onlineadmin ( 10487) PHP Version : 8.5.7 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/httpd/vhosts/comeonline.ch/.config/fish/ |
Upload File : |
# Function to add directories to the $PATH. Checks if the exist and if they are already in the $PATH.
function pathadd
if test -d "$argv"
if not contains $argv $PATH
set PATH $PATH $argv
end
end
end
function pathaddfront
if test -d "$argv"
if not contains $argv $PATH
set PATH $argv $PATH
end
end
end
# Add composer binaries and users personal bin folder to $PATH
pathaddfront $HOME/.composer/vendor/bin/
pathaddfront $HOME/bin
# Add vendor/bin path for executables in the current composer project. We do not use our functions to add this at it may not exist in the pwd.
set PATH "vendor/bin/" $PATH
# Set environment type for Drupal settings.php so the correct settings get loaded.
set -x MEOS_SITE_ENVIRONMENT dev
# If not set set the $HOSTNAME environment variable
if test ! (set -q HOSTNAME)
set -x HOSTNAME (hostname)
end
# Set time zone
set -x TZ Europe/Zurich
# Load function information so it shows up in auto completion
# https://github.com/fish-shell/fish-shell/issues/1915#issuecomment-72315918
for i in (functions);functions $i > /dev/null;end
# Load z-fish so we can jump around. See https://github.com/sjl/z-fish for more details.
source ~/bin/z-fish/z.fish