Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Source sys and data configs #2496

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions etc/config.fish
Expand Up @@ -37,3 +37,10 @@ if status --is-login
end
end

# Source fish files
for file in $__fish_sysconfdir/*.fish
if test "$file" != "$__fish_sysconfdir/config.fish"
source $file
end
end

8 changes: 8 additions & 0 deletions share/config.fish
Expand Up @@ -152,3 +152,11 @@ function . --description 'Evaluate contents of file (deprecated, see "source")'
source $argv
end
end

# Source fish files
for file in $__fish_datadir/*.fish
if test "$file" != "$__fish_datadir/config.fish"
source $file
end
end