shoestrap/assets/default/oh-my-fish/init.fish
ViViDboarder 028d0a56a0 Add support for both omf and fisherman
omf seems a bit janky at times. Giving fisherman a shot
2016-02-11 17:17:28 -08:00

15 lines
392 B
Fish

function source_config
# Sources a config file and corresponding local config file if it exists
set shared_config "$OMF_CONFIG/$argv[1].fish"
set local_config "$OMF_CONFIG/$argv[1].local.fish"
if test -f "$shared_config"
source "$shared_config"
end
if test -f "$local_config"
source "$local_config"
end
end
source_config paths
source_config alias