Commit 03833fda authored by Bruno Pinto's avatar Bruno Pinto

fish has renamed . to source

parent 0c2805fa
...@@ -33,11 +33,11 @@ function _fish_source_plugin_load_file ...@@ -33,11 +33,11 @@ function _fish_source_plugin_load_file
set -l load_file_path "plugins/$plugin/$plugin.load" set -l load_file_path "plugins/$plugin/$plugin.load"
if test -e $fish_path/$load_file_path if test -e $fish_path/$load_file_path
. $fish_path/$load_file_path source $fish_path/$load_file_path
end end
if test -e $fish_custom/$load_file_path if test -e $fish_custom/$load_file_path
. $fish_custom/$load_file_path source $fish_custom/$load_file_path
end end
end end
...@@ -80,7 +80,7 @@ _fish_load_theme $fish_theme ...@@ -80,7 +80,7 @@ _fish_load_theme $fish_theme
# Source all files inside custom folder # Source all files inside custom folder
for config_file in $fish_custom/*.load for config_file in $fish_custom/*.load
. $config_file source $config_file
end end
# Re-adding user's functions so they have the highest priority # Re-adding user's functions so they have the highest priority
......
### Main program ### Main program
if test -d /usr/local/share/fry/fry.fish if test -d /usr/local/share/fry/fry.fish
. /usr/local/share/fry/fry.fish source /usr/local/share/fry/fry.fish
end end
...@@ -12,4 +12,4 @@ set fish_theme robbyrussell ...@@ -12,4 +12,4 @@ set fish_theme robbyrussell
#set fish_custom $HOME/dotfiles/oh-my-fish #set fish_custom $HOME/dotfiles/oh-my-fish
# Load oh-my-fish configuration. # Load oh-my-fish configuration.
. $fish_path/oh-my-fish.fish source $fish_path/oh-my-fish.fish
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment