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 }