-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Helix
[Vim-compatible Editor]
#105
Comments
Diving in: 🏊 brew install helix Configuring ... https://docs.helix-editor.com/configuration.html All keyboard shortcuts in a single page: https://cheatography.com/hiddenmonkey/cheat-sheets/helix/ |
|
brew install helix
Running `brew update --auto-update`...
==> Auto-updated Homebrew!
Updated 2 taps (homebrew/core and homebrew/cask).
==> New Formulae
buf dotnet@6 grammarly-languageserver licensed nemu sapling stylelint
busted erigon hermit luacheck oauth2c souffle zf
clusterawsadm evtx kubefirst metals [email protected] spectral-cli
code-cli go-task libisofs naga-cli portablegl standard
==> New Casks
ankerwork cursr elephas overt tsh vincelwt-chatgpt |
Tried to open Helix: helix . Got: zsh: command not found: helix That's because the command to open it is:
|
Helix Text Editor: Better than Neovim? https://youtu.be/9Zj-wiQ9_Xw |
Helix: an editor hopping story (NeovimConf 2022 Talk): https://youtu.be/tGYvUXYN-c0 |
Built-in Tutor: https://github.com/helix-editor/helix/blob/master/runtime/tutor |
PDF cheat sheet: https://cheatography.com/hiddenmonkey/cheat-sheets/helix/pdf/ |
Themes: https://docs.helix-editor.com/themes.html mkdir -p ~/.config/helix/themes
hx ~/.config/helix/themes/sonokai paste the contents of: https://raw.githubusercontent.com/CptPotato/helix-themes/main/schemes/sonokai then: wq! And then in the editor you're in: :theme sonokai Pretty straightforward to add a different theme. ✅ |
Almost any |
There are already quite a few themes built-in. Select a new one by typing To test-drive all the themes in: https://github.com/CptPotato/helix-themes cd /tmp
git clone [email protected]:CptPotato/helix-themes.git
cp -r ./helix-themes/schemes/* ~/.config/helix/themes/ |
I can see this becoming my default/goto editor; it has everything I need and is very fast. |
Just lost some work when accidentally quit theme = "onedark"
[editor]
line-number = "relative"
mouse = false
[editor.cursor-shape]
insert = "bar"
normal = "block"
select = "underline"
[editor.file-picker]
hidden = false
auto-save = true Got the following error:
That's because my This worked: theme = "onedark"
[editor]
line-number = "relative"
mouse = false
auto-save = true
[editor.cursor-shape]
insert = "bar"
normal = "block"
select = "underline"
[editor.file-picker]
hidden = false Back to work. 🧑💻 |
https://helix-editor.com is a non-graphical text/code editor written in
![image](https://user-images.githubusercontent.com/194400/192681784-1409c132-a301-47a2-8267-7e36e8f0e0ed.png)
Rust
, it shares many key-bindings withVim
.https://github.com/helix-editor/helix
![image](https://user-images.githubusercontent.com/194400/192682615-98684d4a-2e94-4faf-88f3-341a0b5b3ab4.png)
Via: Helix 🧬 the Rust Powered Development Environment: https://youtu.be/xHebvTGOdH8
The text was updated successfully, but these errors were encountered: