Fix editconfig
This commit is contained in:
parent
48da97b704
commit
d2c653a703
1 changed files with 3 additions and 1 deletions
|
@ -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 }
|
||||||
|
|
Loading…
Add table
Reference in a new issue