2005-09-20 13:31:55 +00:00
|
|
|
#
|
|
|
|
# Init file for fish
|
|
|
|
#
|
2006-02-04 13:09:14 +00:00
|
|
|
# @configure_input@
|
2005-09-20 13:31:55 +00:00
|
|
|
|
2006-02-17 10:13:39 +00:00
|
|
|
#
|
|
|
|
# Set default search paths
|
|
|
|
#
|
|
|
|
|
|
|
|
set -g fish_function_path ~/.fish.d/functions @SYSCONFDIR@/fish.d/functions @DATADIR@/functions
|
|
|
|
set -g fish_complete_path ~/.fish.d/completions @SYSCONFDIR@/fish.d/completions @DATADIR@/completions
|
|
|
|
|
2005-09-20 13:31:55 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
|
2006-02-03 21:29:01 +00:00
|
|
|
set -l path_list /bin /usr/bin /usr/X11R6/bin @PREFIX@/bin @optbindirs@
|
2005-12-20 09:01:55 +00:00
|
|
|
|
2006-01-21 20:42:17 +00:00
|
|
|
# Root should also have the sbin directories in the path
|
2006-02-04 13:09:14 +00:00
|
|
|
if test "$USER" = root
|
2005-12-20 09:01:55 +00:00
|
|
|
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-09-20 13:31:55 +00:00
|
|
|
#
|
2006-01-21 21:12:39 +00:00
|
|
|
# Set some value for LANG if nothing was set before, and this is a
|
|
|
|
# login shell. Also check for i18n information in /etc/sysconfig/i18n
|
2005-09-20 13:31:55 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
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
|
2006-01-11 14:23:40 +00:00
|
|
|
|
|
|
|
if test -f /etc/sysconfig/i18n
|
2006-01-12 14:49:03 +00:00
|
|
|
eval (cat /etc/sysconfig/i18n |sed -ne 's/^\([a-zA-Z]*\)=\(.*\)$/set -gx \1 \2;/p')
|
2006-01-11 14:23:40 +00:00
|
|
|
end
|
2005-09-20 13:31:55 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Put linux console in unicode mode. Should this be done in any other
|
|
|
|
# situation as well?
|
|
|
|
#
|
|
|
|
|
2006-02-17 10:13:39 +00:00
|
|
|
if expr "$LANG" : ".*[Uu][Tt][Ff]" >/dev/null
|
2005-11-02 16:49:13 +00:00
|
|
|
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
|
|
|
|
|
2006-01-21 21:12:39 +00:00
|
|
|
#
|
|
|
|
# Alias for gettext (or a fallback if gettext isn't installed) This
|
|
|
|
# needs to be defined here and not in fish_function.fish, since it is
|
|
|
|
# used by other init files.
|
|
|
|
#
|
|
|
|
|
2006-02-03 21:29:39 +00:00
|
|
|
function _ -d "Alias for the gettext command"
|
|
|
|
printf "%s" $argv
|
|
|
|
end
|
|
|
|
if test 1 = "@HAVE_GETTEXT@"
|
|
|
|
if which gettext ^/dev/null >/dev/null
|
|
|
|
function _ -d "Alias for the gettext command"
|
|
|
|
gettext fish $argv
|
|
|
|
end
|
2006-01-20 16:31:56 +00:00
|
|
|
end
|
2006-01-05 17:09:15 +00:00
|
|
|
end
|
|
|
|
|
2005-09-26 12:33:06 +00:00
|
|
|
#
|
|
|
|
# Load additional initialization files
|
|
|
|
#
|
|
|
|
|
|
|
|
for i in fish.d/*.fish
|
|
|
|
. $i
|
|
|
|
end
|