diff --git a/scripts/helix.md b/scripts/helix.md new file mode 100644 index 0000000..db9816c --- /dev/null +++ b/scripts/helix.md @@ -0,0 +1,15 @@ +# Helix setup + +1. [Install `kotlin-lsp` CLI](../README.md#install-kotlin-lsp-cli) +2. Add the below configuration to your [languages.toml](https://docs.helix-editor.com/languages.html) in `~/.config/helix/languages.toml`: + + ```toml + [language-server.kotlin] + command = "kotlin-lsp" + args = ["--stdio"] + + [[language]] + name = "kotlin" + language-servers = [ "kotlin" ] + ``` +