mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Proper ordering on paths for dynamic loading - user stuff should override sysadmin stuff should overrtide default stuff
darcs-hash:20060217125318-ac50b-f74103958cf01103b351227ae561703ac96ebe95.gz
This commit is contained in:
parent
e1d0b9370e
commit
a74055bc33
1 changed files with 2 additions and 2 deletions
4
etc/fish
4
etc/fish
|
@ -7,8 +7,8 @@
|
|||
# Set default search paths
|
||||
#
|
||||
|
||||
set -g fish_function_path /usr/share/functions /etc/fish.d/functions ~/.fish.d/functions
|
||||
set -g fish_complete_path /usr/share/completions /etc/fish.d/completions ~/.fish.d/completions
|
||||
set -g fish_function_path ~/.fish.d/functions /etc/fish.d/functions /usr/share/functions
|
||||
set -g fish_complete_path ~/.fish.d/completions /etc/fish.d/completions /usr/share/completions
|
||||
|
||||
#
|
||||
# Set default field separators
|
||||
|
|
Loading…
Reference in a new issue