Fix editconfig

This commit is contained in:
mokou 2021-03-29 13:59:13 +02:00
parent 48da97b704
commit d2c653a703

View file

@ -16,6 +16,7 @@ $setpath ~/.cargo/bin
$setpath ~/.local/bin $setpath ~/.local/bin
$setpath ~/n/bin $setpath ~/n/bin
$setpath ~/Library/Python/3.7/bin $setpath ~/Library/Python/3.7/bin
$setpath ~/.asdf/shims
# Use private stuff # Use private stuff
if (path:is-regular ~/.elvish/lib/private.elv) { 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 # Aliases
fn editconfig []{ 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 c [@a]{ cargo $@a }
fn cr [@a]{ c run $@a } fn cr [@a]{ c run $@a }