aboutsummaryrefslogtreecommitdiff
path: root/book
diff options
context:
space:
mode:
authorAlex2022-10-19 22:19:03 +0000
committerGitHub2022-10-19 22:19:03 +0000
commit8c9bb23650ba3c0c0bc7b25a359f997e130feb25 (patch)
treee763daad22eb66e8c0f44826c3da3cfc8ebb0ce9 /book
parent4174b25b3d0d39c09a6d4bcd7fa22ee98be52ed1 (diff)
Update windows install instructions (#4351)
Diffstat (limited to 'book')
-rw-r--r--book/src/install.md43
1 files changed, 38 insertions, 5 deletions
diff --git a/book/src/install.md b/book/src/install.md
index 136e12c9..4e7ea8dc 100644
--- a/book/src/install.md
+++ b/book/src/install.md
@@ -50,6 +50,23 @@ sudo dnf install helix
sudo xbps-install helix
```
+## Windows
+
+Helix can be installed using [Scoop](https://scoop.sh/) or [Chocolatey](https://chocolatey.org/).
+
+**Scoop:**
+
+```
+scoop install helix
+```
+
+**Chocolatey:**
+
+```
+choco install helix
+```
+
+
## Build from source
```
@@ -64,11 +81,27 @@ Helix also needs its runtime files so make sure to copy/symlink the `runtime/` d
config directory (for example `~/.config/helix/runtime` on Linux/macOS). This location can be overridden
via the `HELIX_RUNTIME` environment variable.
-| OS | command |
-| ------------------- | ------------------------------------------------ |
-| windows(cmd.exe) | `xcopy /e /i runtime %AppData%/helix/runtime` |
-| windows(powershell) | `xcopy /e /i runtime $Env:AppData\helix\runtime` |
-| linux/macos | `ln -s $PWD/runtime ~/.config/helix/runtime` |
+| OS | Command |
+| -------------------- | ------------------------------------------------ |
+| Windows (Cmd) | `xcopy /e /i runtime %AppData%\helix\runtime` |
+| Windows (PowerShell) | `xcopy /e /i runtime $Env:AppData\helix\runtime` |
+| Linux / MacOS | `ln -s $PWD/runtime ~/.config/helix/runtime` |
+
+Starting with Windows Vista you can also create symbolic links on Windows. Note that this requires
+elevated priviliges - i.e. PowerShell or Cmd must be run as administrator.
+
+**PowerShell:**
+
+```powershell
+New-Item -ItemType SymbolicLink -Target "runtime" -Path "$Env:AppData\helix\runtime"
+```
+
+**Cmd:**
+
+```cmd
+cd %appdata%\helix
+mklink /D runtime "<helix-repo>\runtime"
+```
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: