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
|
|
|
|
#
|
|
|
|
|
2006-02-25 11:29:11 +00:00
|
|
|
set -g fish_function_path ~/.fish.d/functions @SYSCONFDIR@/fish.d/functions @DATADIR@/fish/functions
|
|
|
|
set -g fish_complete_path ~/.fish.d/completions @SYSCONFDIR@/fish.d/completions @DATADIR@/fish/completions
|
2006-02-17 10:13:39 +00:00
|
|
|
|
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
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
|
|
|
#
|
|
|
|
# Load additional initialization files
|
|
|
|
#
|
|
|
|
|
|
|
|
for i in fish.d/*.fish
|
|
|
|
. $i
|
|
|
|
end
|