mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-01 04:26:31 +00:00
12 lines
367 B
Fish
12 lines
367 B
Fish
function source_synced
|
|
# Sources a config file and corresponding local config file if it exists
|
|
set -l shared_config "$fish_synced_dir/$argv[1].fish"
|
|
set -l local_config "$fish_synced_dir/$argv[1].local.fish"
|
|
if test -f "$shared_config"
|
|
source "$shared_config"
|
|
end
|
|
if test -f "$local_config"
|
|
source "$local_config"
|
|
end
|
|
end
|