mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
dd8150d98d
darcs-hash:20060314000914-ac50b-63c49a59804f51c4dd19de574db41298b1ef67c5.gz
96 lines
1.8 KiB
Text
96 lines
1.8 KiB
Text
#
|
|
# Init file for fish
|
|
#
|
|
# @configure_input@
|
|
|
|
#
|
|
# Set default search paths for completions and shellscript functions
|
|
#
|
|
|
|
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
|
|
|
|
#
|
|
# 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.
|
|
#
|
|
|
|
set -l path_list /bin /usr/bin /usr/X11R6/bin @PREFIX@/bin @optbindirs@
|
|
|
|
#
|
|
# Root should also have the sbin directories in the path
|
|
#
|
|
|
|
if test "$USER" = root
|
|
set path_list $path_list /sbin /usr/sbin /usr/local/sbin
|
|
end
|
|
|
|
for i in $path_list
|
|
if not expr "$PATH" : .\*$i.\* >/dev/null
|
|
if test -d $i
|
|
set PATH $PATH $i
|
|
end
|
|
end
|
|
end
|
|
|
|
|
|
#
|
|
# Some things should only be done for login terminals
|
|
#
|
|
|
|
if status --is-login
|
|
|
|
#
|
|
# Set some value for LANG if nothing was set before, and this is a
|
|
# login shell.
|
|
#
|
|
|
|
if not set -q LANG >/dev/null
|
|
set -gx LANG en_US.UTF-8
|
|
end
|
|
|
|
# Check for i18n information in
|
|
# /etc/sysconfig/i18n
|
|
|
|
if test -f /etc/sysconfig/i18n
|
|
eval (cat /etc/sysconfig/i18n |sed -ne 's/^\([a-zA-Z]*\)=\(.*\)$/set -gx \1 \2;/p')
|
|
end
|
|
|
|
#
|
|
# Put linux consoles in unicode mode.
|
|
#
|
|
|
|
if expr "$LANG" : ".*\.[Uu][Tt][Ff].*" >/dev/null
|
|
if test "$TERM" = linux
|
|
if which unicode_start >/dev/null
|
|
unicode_start
|
|
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 set -q $i
|
|
set -- $i (printf ":%s" $$i|cut -c 2-)
|
|
end
|
|
end
|
|
|
|
#
|
|
# Load additional initialization files
|
|
#
|
|
|
|
for i in fish.d/*.fish
|
|
. $i
|
|
end
|