Commit b7b5ce3c authored by Bruno Pinto's avatar Bruno Pinto

loading theme either from custom or from oh-my-fish dir

parent 7e6b6658
...@@ -41,6 +41,16 @@ function _fish_source_plugin_load_file ...@@ -41,6 +41,16 @@ function _fish_source_plugin_load_file
end end
end end
function _fish_configure_theme
if test -d $fish_path/themes/$fish_theme
set fish_function_path $fish_path/themes/$fish_theme $fish_function_path
end
if test -d $fish_custom/themes/$fish_theme
set fish_function_path $fish_custom/themes/$fish_theme $fish_function_path
end
end
### ###
# Configuration # Configuration
### ###
...@@ -66,7 +76,7 @@ for plugin in $fish_plugins ...@@ -66,7 +76,7 @@ for plugin in $fish_plugins
end end
# Add user defined theme # Add user defined theme
set fish_function_path $fish_custom/themes/$fish_theme $fish_path/themes/$fish_theme $fish_function_path _fish_configure_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
......
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