1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 08:28:30 +02:00

fish: fix sourcing of .fish files

Turns out, the quotes were messing things up.
This commit is contained in:
Cole Helbling 2020-02-07 16:15:11 -08:00 committed by Robert Helgesson
parent 111011b2c2
commit 9a258edc10
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
2 changed files with 2 additions and 2 deletions

View File

@ -310,7 +310,7 @@ in
# Source initialization code if it exists.
if test -d $plugin_dir"/conf.d"
source $plugin_dir"/conf.d/*.fish"
source $plugin_dir/conf.d/*.fish
end
if test -f $plugin_dir"/key_bindings.fish"

View File

@ -21,7 +21,7 @@ let
# Source initialization code if it exists.
if test -d $plugin_dir"/conf.d"
source $plugin_dir"/conf.d/*.fish"
source $plugin_dir/conf.d/*.fish
end
if test -f $plugin_dir"/key_bindings.fish"