mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
fish: fix sourcing of .fish files
Turns out, the quotes were messing things up.
This commit is contained in:
parent
111011b2c2
commit
9a258edc10
2 changed files with 2 additions and 2 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue