mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-16 17:58:24 +00:00
d332293245
darcs-hash:20051025093945-ac50b-8939b844e472caf43a206e2a0dbfa0d48ffdd45c.gz
70 lines
1.1 KiB
Text
70 lines
1.1 KiB
Text
#
|
|
# Init file for fish
|
|
#
|
|
|
|
|
|
#
|
|
# Set default field separators
|
|
#
|
|
|
|
set -g IFS \ \t\n
|
|
|
|
#
|
|
# 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.
|
|
#
|
|
|
|
for i in /bin /usr/bin /usr/X11R6/bin @PREFIX@/bin
|
|
if test -d $i
|
|
if not echo $PATH|grep $i >/dev/null
|
|
set PATH $PATH $i
|
|
end
|
|
end
|
|
end
|
|
|
|
#
|
|
# Set some value for LANG if nothing was set before
|
|
#
|
|
|
|
if status --is-login
|
|
if not count $LANG >/dev/null
|
|
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?
|
|
#
|
|
|
|
if count $LANG >/dev/null
|
|
if test (expr match $LANG ".*UTF") -gt 0
|
|
if count $TERM >/dev/null
|
|
if test linux = $TERM
|
|
unicode_start ^/dev/null
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
|
|
#
|
|
# There are variables that contain colons that are not arrays. This
|
|
# reverts them back to regular strings.
|
|
#
|
|
|
|
for i in DISPLAY
|
|
if test (count $$i) -gt 1
|
|
set -- $i (printf ":%s" $$i|cut -c 2-)
|
|
end
|
|
end
|
|
|
|
#
|
|
# Load additional initialization files
|
|
#
|
|
|
|
for i in fish.d/*.fish
|
|
. $i
|
|
end
|