mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-25 10:56:19 +04:00
Clarify use of HELIX_RUNTIME
(#4382)
This commit is contained in:
parent
6a0b450f55
commit
fbf8078611
11
README.md
11
README.md
@ -41,7 +41,7 @@ # Installation
|
|||||||
cargo install --path helix-term
|
cargo install --path helix-term
|
||||||
```
|
```
|
||||||
|
|
||||||
This will install the `hx` binary to `$HOME/.cargo/bin` and build tree-sitter grammars.
|
This will install the `hx` binary to `$HOME/.cargo/bin` and build tree-sitter grammars in `./runtime/grammars`.
|
||||||
|
|
||||||
Helix needs its runtime files so make sure to copy/symlink the `runtime/` directory into the
|
Helix needs its runtime files so make sure to copy/symlink the `runtime/` directory into the
|
||||||
config directory (for example `~/.config/helix/runtime` on Linux/macOS, or `%AppData%/helix/runtime` on Windows).
|
config directory (for example `~/.config/helix/runtime` on Linux/macOS, or `%AppData%/helix/runtime` on Windows).
|
||||||
@ -68,7 +68,14 @@ # Installation
|
|||||||
mklink /D runtime "<helix-repo>\runtime"
|
mklink /D runtime "<helix-repo>\runtime"
|
||||||
```
|
```
|
||||||
|
|
||||||
This location can be overridden via the `HELIX_RUNTIME` environment variable.
|
The runtime location can be overridden via the `HELIX_RUNTIME` environment variable.
|
||||||
|
|
||||||
|
> NOTE: if `HELIX_RUNTIME` is set prior to calling `cargo install --path helix-term`,
|
||||||
|
> tree-sitter grammars will be built in `$HELIX_RUNTIME/grammars`.
|
||||||
|
|
||||||
|
If you plan on keeping the repo locally, an alternative to copying/symlinking
|
||||||
|
runtime files is to set `HELIX_RUNTIME=/path/to/helix/runtime`
|
||||||
|
(`HELIX_RUNTIME=$PWD/runtime` if you're in the helix repo directory).
|
||||||
|
|
||||||
Packages already solve this for you by wrapping the `hx` binary with a wrapper
|
Packages already solve this for you by wrapping the `hx` binary with a wrapper
|
||||||
that sets the variable to the install dir.
|
that sets the variable to the install dir.
|
||||||
|
@ -75,7 +75,7 @@ ## Build from source
|
|||||||
cargo install --path helix-term
|
cargo install --path helix-term
|
||||||
```
|
```
|
||||||
|
|
||||||
This will install the `hx` binary to `$HOME/.cargo/bin`.
|
This will install the `hx` binary to `$HOME/.cargo/bin` and build tree-sitter grammars in `./runtime/grammars`.
|
||||||
|
|
||||||
Helix also needs its runtime files so make sure to copy/symlink the `runtime/` directory into the
|
Helix also needs its runtime files so make sure to copy/symlink the `runtime/` directory into the
|
||||||
config directory (for example `~/.config/helix/runtime` on Linux/macOS). This location can be overridden
|
config directory (for example `~/.config/helix/runtime` on Linux/macOS). This location can be overridden
|
||||||
@ -103,6 +103,15 @@ ## Build from source
|
|||||||
mklink /D runtime "<helix-repo>\runtime"
|
mklink /D runtime "<helix-repo>\runtime"
|
||||||
```
|
```
|
||||||
|
|
||||||
|
The runtime location can be overridden via the `HELIX_RUNTIME` environment variable.
|
||||||
|
|
||||||
|
> NOTE: if `HELIX_RUNTIME` is set prior to calling `cargo install --path helix-term`,
|
||||||
|
> tree-sitter grammars will be built in `$HELIX_RUNTIME/grammars`.
|
||||||
|
|
||||||
|
If you plan on keeping the repo locally, an alternative to copying/symlinking
|
||||||
|
runtime files is to set `HELIX_RUNTIME=/path/to/helix/runtime`
|
||||||
|
(`HELIX_RUNTIME=$PWD/runtime` if you're in the helix repo directory).
|
||||||
|
|
||||||
To use Helix in desktop environments that supports [XDG desktop menu](https://specifications.freedesktop.org/menu-spec/menu-spec-latest.html), including Gnome and KDE, copy the provided `.desktop` file to the correct folder:
|
To use Helix in desktop environments that supports [XDG desktop menu](https://specifications.freedesktop.org/menu-spec/menu-spec-latest.html), including Gnome and KDE, copy the provided `.desktop` file to the correct folder:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
Loading…
Reference in New Issue
Block a user