aboutsummaryrefslogtreecommitdiff
path: root/content/posts/2022-06-30-trying-out-helix-editor.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/posts/2022-06-30-trying-out-helix-editor.md')
-rw-r--r--content/posts/2022-06-30-trying-out-helix-editor.md53
1 files changed, 53 insertions, 0 deletions
diff --git a/content/posts/2022-06-30-trying-out-helix-editor.md b/content/posts/2022-06-30-trying-out-helix-editor.md
new file mode 100644
index 0000000..305d4b7
--- /dev/null
+++ b/content/posts/2022-06-30-trying-out-helix-editor.md
@@ -0,0 +1,53 @@
1---
2title: Trying out Helix code editor as my main editor
3url: tying-out-helix-code-editor.html
4date: 2022-06-30T12:00:00+02:00
5type: post
6draft: false
7---
8
9I have been searching for a lightweight code editor for quite some time. One of
10the main reasons was that I wanted something that doesn't burn through CPU and
11RAM usage is not through the roof. I have been mostly using Visual Studio Code.
12It's been an outstanding editor. I have no quarrel with it at all. It's just
13time to spice life up with something new.
14
15I have been on this search for a couple of years. I have tried Vim, Neovim,
16Emacs, Doom Emacs, Micro and couple more. Among most of them, I liked Micro and
17Doom Emacs the most. Micro editor was a little too basic for me. And Doom Emacs
18was a bit too hardcore. This does not reflect on any of the editors. It's just
19my personal preference.
20
21> I tried Helix Editor about a year ago. But I didn't pay attention to it.
22> Tried it and saw it's similar to Vi and just said no. I was premature to
23> dismiss it.
24
25One of the things I actually miss is line wrapping for certain files. When
26writing Markdown, line wrapping would be very helpful. Editing such a document
27is frustrating to say the least. Some of the Markdown to HTML converters don't
28take kindly of new lines between sentences. Not paragraphs, sentences. And I use
29Markdown to write this blog you are reading.
30
31But other than this, I have been extremely satisfied by it. It's been a pleasant
32surprise. There have been zero issues with the editor.
33
34One thing to do before you are able to use autocompletion and make use Language
35Server support is to install the language server with NPM.
36
37```sh
38npm install -g typescript typescript-language-server
39```
40
41I am still getting used to the keyboard shortcuts and getting better. What Helix
42does really well is packing in sane defaults and even though because currently
43there is no plugin support I haven't found any need for them. It has all that
44you would need. It goes to extreme measures to show a user what is going on with
45popups that show you what the keyboard shortcuts are.
46
47And it comes us packed with many
48[really good themes](https://github.com/helix-editor/helix/wiki/Themes).
49
50![Editor](/assets/helix-editor/editor.png)
51
52It's still young but has this mature feeling to it. It has sane defaults and
53mimics Vim (works a bit differently, but the overall idea is similar).