summaryrefslogtreecommitdiffstatshomepage
path: root/BUILD.md
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2024-03-28 02:32:32 +0100
committerGitHub <noreply@github.com>2024-03-28 09:32:32 +0800
commita89ce89742db600665b69e58d5e1bc3dbee9d57b (patch)
treefdb467f608d96c293aa51b4c1e7291e8bc0de825 /BUILD.md
parent4ee9e58056a9d17ce921d8cc6dfd6d3305a40f69 (diff)
docs: fix typos (#27868)
Co-authored-by: ite-usagi <77563904+ite-usagi@users.noreply.github.com> Co-authored-by: v-sim <56476039+v-sim@users.noreply.github.com> Co-authored-by: Evgeni Chasnovski <evgeni.chasnovski@gmail.com> Co-authored-by: zeertzjq <zeertzjq@outlook.com> Co-authored-by: Quico Augustijn <quico.public@gmail.com> Co-authored-by: nhld <nahnera@gmail.com> Co-authored-by: francisco souza <108725+fsouza@users.noreply.github.com>
Diffstat (limited to 'BUILD.md')
-rw-r--r--BUILD.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/BUILD.md b/BUILD.md
index 4e3daa1f17..ca53a5b5b9 100644
--- a/BUILD.md
+++ b/BUILD.md
@@ -16,7 +16,7 @@
**Notes**:
- From the repository's root directory, running `make` will download and build all the needed dependencies and put the `nvim` executable in `build/bin`.
-- Third-party dependencies (libuv, LuaJIT, etc.) are downloaded automatically to `.deps/`. See the [FAQ](FAQ#build-issues) if you have issues.
+- Third-party dependencies (libuv, LuaJIT, etc.) are downloaded automatically to `.deps/`. See the [FAQ](https://neovim.io/doc/user/faq.html#faq-build) if you have issues.
- After building, you can run the `nvim` executable without installing it by running `VIMRUNTIME=runtime ./build/bin/nvim`.
- If you plan to develop Neovim, install [Ninja](https://ninja-build.org/) for faster builds. It will automatically be used.
- Install [ccache](https://ccache.dev/) for faster rebuilds of Neovim. It's used by default. To disable it, use `CCACHE_DISABLE=true make`.
@@ -345,7 +345,7 @@ buildPhase
```
Tests are not available by default, because of some unfixed failures. You can enable them via adding this package in your overlay:
-```
+```
neovim-dev = (super.pkgs.neovim-unwrapped.override {
doCheck=true;
}).overrideAttrs(oa:{