zvm-direnv/README.md

36 lines
989 B
Markdown
Raw Normal View History

2024-10-31 21:04:56 +00:00
zvm-direnv
==========
A way to use [zvm](https://zvm.app) with [direnv](https://direnv.net)
Installing
----------
Put the following lines in your `.envrc`:
```sh
if ! has zvm_direnv_version || ! zvm_direnv_version 1.0.0; then
source_url "https://git.lerch.org/lobo/zvm-direnv/raw/tag/1.0.0/direnvrc" "sha256-Gtddvcr6aJsrjKd53uChxA1reQmJgEBpmPUWmMdtDIQ="
2024-10-31 21:04:56 +00:00
fi
```
Usage
-----
```sh
$ echo "use zig 0.13.0" >> .envrc
$ direnv allow
```
If you haven't used direnv before, make sure to [hook it into your shell](https://direnv.net/docs/hook.html) first.
How it works
------------
This implementation utilizes zvm for installation of both [zig](https://ziglang.org)
and [zls](https://github.com/zigtools/zls). It avoids the use of `zvm use` as
this will change the zig version system-wide, possibly resulting in some
confusing behavior. Instead, it uses zvm to download the appropriate versions
if necessary, then prepends the desired version to the path used in the direnv
directory.