diff options
author | Marcin Puc | 2022-05-29 15:52:26 +0000 |
---|---|---|
committer | GitHub | 2022-05-29 15:52:26 +0000 |
commit | cd4622db9b041b9766b940fed0560b3d1a46a234 (patch) | |
tree | 7f65f84d172f9e15bf17c25eb81377c228c5e68e | |
parent | 89c6e8aa9419df3b7975bcae28f83e2ccc3bc318 (diff) |
Update from-source install instruction in README (#2603)
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -40,11 +40,11 @@ If you would like to build from source: git clone https://github.com/helix-editor/helix cd helix cargo install --path helix-term -hx --grammar fetch -hx --grammar build ``` This will install the `hx` binary to `$HOME/.cargo/bin` and build tree-sitter grammars. +If you want to customize your `languages.toml` config, +tree-sitter grammars may be manually fetched and built with `hx --grammar fetch` and `hx --grammar build`. 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, or `%AppData%/helix/runtime` on Windows). |