mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
fish: fix sourcing of .fish files
Turns out, the quotes were messing things up.
This commit is contained in:
committed by
Robert Helgesson
parent
111011b2c2
commit
9a258edc10
@@ -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"
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user