From d2c653a7032f6ee068f0a621d388ea66f9c5c9bd Mon Sep 17 00:00:00 2001 From: mokou Date: Mon, 29 Mar 2021 13:59:13 +0200 Subject: [PATCH] Fix editconfig --- private_dot_elvish/rc.elv | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/private_dot_elvish/rc.elv b/private_dot_elvish/rc.elv index 1a5fae8..eda4867 100644 --- a/private_dot_elvish/rc.elv +++ b/private_dot_elvish/rc.elv @@ -16,6 +16,7 @@ $setpath ~/.cargo/bin $setpath ~/.local/bin $setpath ~/n/bin $setpath ~/Library/Python/3.7/bin +$setpath ~/.asdf/shims # Use private stuff if (path:is-regular ~/.elvish/lib/private.elv) { @@ -38,7 +39,8 @@ set-env TZ_LIST "Europe/Berlin;Berlin,America/New_York;US East,America/Los_Angel # Aliases fn editconfig []{ - and (chezmoi edit ~/.elvish/rc.elv) (eval (cat ~/.elvish/rc.elv | slurp)) + exec (chezmoi edit ~/.elvish/rc.elv) + eval (cat ~/.elvish/rc.elv | slurp) } fn c [@a]{ cargo $@a } fn cr [@a]{ c run $@a }