A post-modern modal text editor.
Go to file
2021-05-11 19:46:58 +09:00
.github/workflows Fix release packaging. 2021-05-11 19:46:58 +09:00
book Update book css styling. 2021-04-07 23:56:56 +09:00
docs Fix release packaging. 2021-05-11 19:46:58 +09:00
helix-core Add the LICENSE file. 2021-05-11 01:44:00 +09:00
helix-lsp Add the LICENSE file. 2021-05-11 01:44:00 +09:00
helix-syntax Add the LICENSE file. 2021-05-11 01:44:00 +09:00
helix-term Add the LICENSE file. 2021-05-11 01:44:00 +09:00
helix-tui Add the LICENSE file. 2021-05-11 01:44:00 +09:00
helix-view Add the LICENSE file. 2021-05-11 01:44:00 +09:00
runtime/queries Fix C highlighting inconsistencies. 2021-04-23 18:42:29 +09:00
.envrc Add a nix flake with the development environment. 2021-01-19 15:54:51 +09:00
.gitignore Add a nix flake with the development environment. 2021-01-19 15:54:51 +09:00
.gitmodules Import tree sitter queries. 2021-04-08 23:25:35 +09:00
Cargo.lock Make the config dir locator work on Windows. 2021-05-10 16:21:55 +09:00
Cargo.toml Inline tui as helix-tui fork. 2021-05-09 17:52:55 +09:00
flake.lock Bump deps: rust 1.52. 2021-05-07 17:10:27 +09:00
flake.nix Closer to a full flake build via naersk. 2021-05-03 22:39:53 +09:00
languages.toml Golang uses tabs for indentation. 2021-04-23 18:55:34 +09:00
LICENSE Add the LICENSE file. 2021-05-11 01:44:00 +09:00
README.md Fix release packaging. 2021-05-11 19:46:58 +09:00
shell.nix Determine runtime dir based on executable location or env override. 2021-05-10 01:02:53 +09:00
theme.toml Define text color (mostly) in theme.toml. 2021-05-07 17:42:09 +09:00
TODO.md Update todos. 2021-05-09 19:03:03 +09:00

Helix

Build status

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.

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.

Installation

We provide packaging for various distributions, but here's a quick method to build from source.

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

This will install the hx binary to $HOME/.cargo/bin.

Now copy the runtime/ directory somewhere. Helix will by default look for the runtime inside the same folder as the executable, but that can be overriden via the HELIX_RUNTIME environment variable.

Contributing

Contributors are very welcome! No contribution is too small and all contributions are valued.

Some suggestions to get started:

  • You can look at the good first issue label on the issue tracker.
  • Help with packaging on various distributions needed!
  • If your preferred language is missing, integrating a tree-sitter grammar for it and defining syntax highlight queries for it is straight forward and doesn't require much knowledge of the internals.

We provide an architecture.md that should give you a good overview of the internals.

Getting help

Discuss the project on the community Matrix channel.