summaryrefslogtreecommitdiff
path: root/.envrc
diff options
context:
space:
mode:
Diffstat (limited to '.envrc')
-rw-r--r--.envrc16
1 files changed, 8 insertions, 8 deletions
diff --git a/.envrc b/.envrc
index 7e9583e..f342995 100644
--- a/.envrc
+++ b/.envrc
@@ -7,8 +7,8 @@
# watch some files that effect the dev environment
# watch_file shell.nix
# watch_file default.nix
-# watch_file Biz/Bild.nix
-# watch_file Biz/Bild.hs
+# watch_file Omni/Bild.nix
+# watch_file Omni/Bild.hs
# if direnv doesn't detect changes to the nix environment, just touch .envrc and
# it will refresh
use nix
@@ -17,7 +17,7 @@
export COLUMNS
#
# scripts for editing go here
- PATH_add $CODEROOT/Biz/Ide
+ PATH_add $CODEROOT/Omni/Ide
#
# executable bild outputs go here
PATH_add $CODEROOT/_/bin
@@ -40,15 +40,15 @@
fi
#
# configure git
- git config --local core.hooksPath "$CODEROOT/Biz/Ide/hooks"
+ git config --local core.hooksPath "$CODEROOT/Omni/Ide/hooks"
git config --local notes.displayRef refs/notes/ci
git config --local remotes.origin.fetch +refs/notes/*:refs/notes/* notes
git config --local branchless.test.strategy worktree
git config --local branchless.test.alias.default 'export CI=1; git clean -ffdx; eval $(direnv export bash); bild --test **/*'
git config --local branchless.test.alias.bild 'export CI=1; git clean -ffdx; eval $(direnv export bash); bild **/*'
- git config --local branchless.test.alias.lint 'export CI=1; git clean -ffdx; eval $(direnv export bash); bild Biz/Lint.hs; lint **/*'
- git config --local branchless.test.alias.lintfix 'export CI=1; git clean -ffdx; eval $(direnv export bash); bild Biz/Lint.hs; lint --fix **/*'
- git config --local branchless.test.alias.ci 'export CI=1; git clean -ffdx; eval $(direnv export bash); Biz/Ci.sh'
+ git config --local branchless.test.alias.lint 'export CI=1; git clean -ffdx; eval $(direnv export bash); bild Omni/Lint.hs; lint **/*'
+ git config --local branchless.test.alias.lintfix 'export CI=1; git clean -ffdx; eval $(direnv export bash); bild Omni/Lint.hs; lint --fix **/*'
+ git config --local branchless.test.alias.ci 'export CI=1; git clean -ffdx; eval $(direnv export bash); Omni/Ci.sh'
#
# end here if we are in CI
[[ -n "CI" ]] && exit 0
@@ -56,7 +56,7 @@
# create third-party tags
[[ -L "$CODEROOT"/_/src/.ctags.d ]] || ln -s "$CODEROOT"/.ctags.d "$CODEROOT"/_/src/.ctags.d
function MakeExternalTags {
- "$CODEROOT"/Biz/Ide/MakeTags.py --external $(tr ':' '\n' <<< "$ALL_SOURCES")
+ "$CODEROOT"/Omni/Ide/MakeTags.py --external $(tr ':' '\n' <<< "$ALL_SOURCES")
}
hashfile="$CODEROOT"/_/src/hash
curhash=$(cat "$hashfile")