2005-09-20 13:31:55 +00:00
|
|
|
#
|
|
|
|
# Init file for fish
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Set default field separators
|
|
|
|
#
|
|
|
|
|
2005-10-25 09:39:45 +00:00
|
|
|
set -g IFS \ \t\n
|
2005-09-20 13:31:55 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Add a few common directories to path, if they exists. Note that pure
|
|
|
|
# console programs like makedep sometimes live in /usr/X11R6/bin, so we
|
|
|
|
# want this even for text-only terminals.
|
|
|
|
#
|
|
|
|
|
2005-12-20 09:01:55 +00:00
|
|
|
set -l path_list /bin /usr/bin /usr/X11R6/bin @PREFIX@/bin
|
|
|
|
|
|
|
|
set -l uid (id -u 2>/dev/null)
|
|
|
|
if test "$uid" = 0
|
|
|
|
set path_list $path_list /sbin /usr/sbin /usr/local/sbin
|
|
|
|
end
|
|
|
|
|
|
|
|
for i in $path_list
|
2005-11-02 16:49:13 +00:00
|
|
|
if not expr "$PATH" : .\*$i.\* >/dev/null
|
|
|
|
if test -d $i
|
2005-09-20 13:31:55 +00:00
|
|
|
set PATH $PATH $i
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2005-11-02 16:49:13 +00:00
|
|
|
|
2005-12-20 09:01:55 +00:00
|
|
|
|
|
|
|
|
2005-09-20 13:31:55 +00:00
|
|
|
#
|
|
|
|
# Set some value for LANG if nothing was set before
|
|
|
|
#
|
|
|
|
|
|
|
|
if status --is-login
|
2005-11-02 16:49:13 +00:00
|
|
|
if not set -q LANG >/dev/null
|
2005-09-20 13:31:55 +00:00
|
|
|
set -gx LANG en_US.UTF-8
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Put linux console in unicode mode. Should this be done in any other
|
|
|
|
# situation as well?
|
|
|
|
#
|
|
|
|
|
2005-11-02 16:49:13 +00:00
|
|
|
if expr match "$LANG" ".*UTF" >/dev/null
|
|
|
|
if test linux = "$TERM"
|
|
|
|
unicode_start ^/dev/null
|
2005-09-20 13:31:55 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# There are variables that contain colons that are not arrays. This
|
|
|
|
# reverts them back to regular strings.
|
|
|
|
#
|
|
|
|
|
|
|
|
for i in DISPLAY
|
2005-11-02 16:49:13 +00:00
|
|
|
if set -q $i
|
2005-09-20 13:31:55 +00:00
|
|
|
set -- $i (printf ":%s" $$i|cut -c 2-)
|
|
|
|
end
|
2005-09-26 12:33:06 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Load additional initialization files
|
|
|
|
#
|
|
|
|
|
|
|
|
for i in fish.d/*.fish
|
|
|
|
. $i
|
|
|
|
end
|