From 3da63fa481711f1b3132eb162e089dcc972e931a Mon Sep 17 00:00:00 2001 From: Gautam Panchal <86514804+gautampanchal94@users.noreply.github.com> Date: Tue, 21 Mar 2023 05:06:27 +0530 Subject: [PATCH] Add instructions for installing via AppImage (#6368) --- book/src/install.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/book/src/install.md b/book/src/install.md index bd3f502b6..a0e24de72 100644 --- a/book/src/install.md +++ b/book/src/install.md @@ -8,6 +8,7 @@ - [Fedora/RHEL](#fedorarhel) - [Arch Linux community](#arch-linux-community) - [NixOS](#nixos) + - [AppImage](#appimage) - [macOS](#macos) - [Homebrew Core](#homebrew-core) - [Windows](#windows) @@ -87,6 +88,16 @@ accepts the new settings on first use. If you are using a version of Nix without flakes enabled, [install Cachix CLI](https://docs.cachix.org/installation) and use `cachix use helix` to configure Nix to use cached outputs when possible. + +### AppImage + +Install Helix using [AppImage](https://appimage.org/). +Download Helix AppImage from the [latest releases](https://github.com/helix-editor/helix/releases/latest) page. + +```sh +chmod +x helix-*.AppImage # change permission for executable mode +./helix-*.AppImage # run helix +``` ## macOS