diff options
author | Ben Sima <ben@bsima.me> | 2023-09-21 22:30:17 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2023-10-03 21:33:37 -0400 |
commit | 4226cbd8020253b010fb44d395db12efe68e1272 (patch) | |
tree | 4ee121a0cf26098b1cec1feed24c2cdd8e036562 /.vimrc | |
parent | dbdf4da2576f889544a33ce0bad4b8a5ff3eca87 (diff) |
Rename BIZ_ROOT to CODEROOT
BIZ_ROOT was too specific. CODEROOT allows for other (non-biz) projects to live
in the root of the repo. I didn't want to call it GIT_ROOT because maybe someday
I won't want to use git. But I'll never not use code.
Diffstat (limited to '.vimrc')
-rw-r--r-- | .vimrc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,8 +1,8 @@ " requires: https://github.com/MarcWeber/vim-addon-local-vimrc augroup tags -au BufWritePost *.hs silent !$BIZ_ROOT/Biz/Ide/mktags % -au BufWritePost *.hsc silent !$BIZ_ROOT/Biz/Ide/mktags % -au BufWritePost *.lhs silent !$BIZ_ROOT/Biz/Ide/mktags % +au BufWritePost *.hs silent !$CODEROOT/Biz/Ide/mktags % +au BufWritePost *.hsc silent !$CODEROOT/Biz/Ide/mktags % +au BufWritePost *.lhs silent !$CODEROOT/Biz/Ide/mktags % augroup END set equalprg=ormolu |