dots

my dotfiles
git clone https://tilde.team/~marisa/repo/dots.git
Log | Files | Refs

commit d2c653a7032f6ee068f0a621d388ea66f9c5c9bd
parent 48da97b704da3b310ddadc6160106bbd0b8fea6e
Author: mokou <mokou@fastmail.com>
Date:   Mon, 29 Mar 2021 13:59:13 +0200

Fix editconfig

Diffstat:
Mprivate_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 @@ -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 }