Grammar Check with Helix Editor
One of the thing that I thought was missing from Helix editor was integration with a decent grammar checker tool.
On Emacs and neovim, I use ltex-ls
.
To my surprise, it works well (I’m using it already) with Helix.
It is probably not well documented though. I had to look through the github issues, but I did come across the solution.
It is straightforward though.
- Download the latest release of ltex-ls from here. I preferred the one which comes with jre. Size increases, but it is self-contained. One can choose smaller download if jre is already installed in your setup.
- Extract it somewhere (e.g.,
~/ltex-ls
) then create a symbolic link tobin/ltex-ls
from somewhere on your path (e.g./usr/local/bin/
) like this :sudo ln -s ~/ltex-ls/bin/ltex-ls /usr/local/bin/ltex-ls
- Add the following to
languages.toml
file:
[[language]]
name = "markdown"
language-servers = [ "ltex-ls" ]
file-types = ["md"]
scope = "source.markdown"
roots = []
- Restart Helix.
- Enjoy 🎉