1
0
mirror of https://github.com/helix-editor/helix synced 2024-11-10 10:34:45 +01:00
A post-modern modal text editor. https://helix-editor.com
Go to file
Kristoffer Flottorp 111d2dafd3
Improve flatwhite theme (#3843)
Co-authored-by: krfl <kr.fl@outlook.com>
2022-09-16 11:39:06 +09:00
.cargo chore: rename .cargo/{config -> config.toml} 2022-09-10 08:44:31 -05:00
.github Strip release binary by setting profile.release.strip in a pre-build step (#3780) 2022-09-11 11:15:07 +09:00
book feat: Syntax highlighting for Astro files (#3829) 2022-09-13 01:53:55 -05:00
contrib fix: add elvish completions (#3331) 2022-08-05 09:50:47 +09:00
docs packaging: Point to homebrew-core instead of tap (#3513) 2022-08-31 17:45:38 +09:00
helix-core fix: map_err()? instead of unwrap (#3826) 2022-09-13 15:08:23 +09:00
helix-dap
helix-loader Canonicalize executable path 2022-09-13 17:50:02 -04:00
helix-lsp Remove LspNotDefined, instead return an Option<> 2022-09-07 16:42:33 +09:00
helix-term Remove border from code actions popup (#3444) 2022-09-13 05:24:48 -04:00
helix-tui Update to crossterm-0.25 (#3390) 2022-08-22 10:29:30 +09:00
helix-view Switch to Result for invalid language 2022-09-10 22:23:38 +09:00
runtime Improve flatwhite theme (#3843) 2022-09-16 11:39:06 +09:00
xtask Add query-check xtask 2022-08-31 17:45:23 +09:00
.envrc
.gitattributes Add .gitattributes (#3318) 2022-08-03 08:21:51 -05:00
.gitignore
.ignore Add a .ignore file to make ripgrep more useful (#3315) 2022-08-03 09:00:39 -05:00
base16_theme.toml
Cargo.lock build(deps): bump url from 2.2.2 to 2.3.1 (#3828) 2022-09-13 10:01:38 +09:00
Cargo.toml
CHANGELOG.md Changelog notes for 22.08.1 (#3639) 2022-09-01 12:07:46 -05:00
default.nix
flake.lock build(nix): update flake deps (#3663) 2022-09-03 13:16:34 +09:00
flake.nix flake: Fix devShell on aarch64-darwin (#3810) 2022-09-13 22:50:53 +09:00
grammars.nix
languages.toml feat: Syntax highlighting for Astro files (#3829) 2022-09-13 01:53:55 -05:00
LICENSE
README.md xcopy - assume destination is a directory (#3686) 2022-09-05 08:42:17 -05:00
rust-toolchain.toml
rustfmt.toml
screenshot.png
shell.nix
theme.toml
VERSION Changelog notes for 22.08.1 (#3639) 2022-09-01 12:07:46 -05:00

Helix

Build status

Screenshot

A kakoune / neovim inspired editor, written in Rust.

The editing model is very heavily based on kakoune; during development I found myself agreeing with most of kakoune's design decisions.

For more information, see the website or documentation.

All shortcuts/keymaps can be found in the documentation on the website.

Troubleshooting

Features

  • Vim-like modal editing
  • Multiple selections
  • Built-in language server support
  • Smart, incremental syntax highlighting and code editing via tree-sitter

It's a terminal-based editor first, but I'd like to explore a custom renderer (similar to emacs) in wgpu or skulpin.

Note: Only certain languages have indentation definitions at the moment. Check runtime/queries/<lang>/ for indents.scm.

Installation

Packages are available for various distributions (see Installation docs).

If you would like to build from source:

git clone https://github.com/helix-editor/helix
cd helix
cargo install --path helix-term

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).

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

This location can be overridden via the HELIX_RUNTIME environment variable.

Packages already solve this for you by wrapping the hx binary with a wrapper that sets the variable to the install dir.

NOTE: running via cargo also doesn't require setting explicit HELIX_RUNTIME path, it will automatically detect the runtime directory in the project root.

In order to use LSP features like auto-complete, you will need to install the appropriate Language Server for a language.

Packaging status

MacOS

Helix can be installed on MacOS through homebrew:

brew install helix

Contributing

Contributing guidelines can be found here.

Getting help

Your question might already be answered on the FAQ.

Discuss the project on the community Matrix Space (make sure to join #helix-editor:matrix.org if you're on a client that doesn't support Matrix Spaces yet).