diff --git a/.helix/languages.toml b/.helix/languages.toml index 07295a0971db17c96eba1f3312135e8c2dcc96af..0469a6870a3ca0b5c76040e108c289ac055b85c9 100644 --- a/.helix/languages.toml +++ b/.helix/languages.toml @@ -1,7 +1,3 @@ [[language]] name = "nix" language-servers = ["nil", "colors"] - -[[language]] -name = "markdown" -language-servers = ["marksman", "grammar"] diff --git a/README.md b/README.md index 0fe415c1442507abe5c69367464fbc5f85568efa..52cf5355b17be1819e39094229d17a6d202c6da7 100644 --- a/README.md +++ b/README.md @@ -11,12 +11,9 @@ ```sh nix run git+https://git.jolheiser.com/helix.drv ``` -## Extra LSPs To add color LSP support to any given language, extend the LSPs configured for that language and add `colors`. -To add grammar checking, extend with `grammar`. - -See [this server's configuration](.helix/languages.toml) for examples. +See [this server's configuration](.helix/languages.toml) for an example. ## License diff --git a/config/languages.nix b/config/languages.nix index 80b9e33e656cc6e6f760f73e8009d47e2cc876af..8475e94ab6e5b2faf386d9f5574e263a552873a5 100644 --- a/config/languages.nix +++ b/config/languages.nix @@ -63,9 +63,5 @@ }; }; }; colors.command = "${lib.getExe uwu-colors}"; - grammar = { - command = "${lib.getExe harper}"; - args = [ "--stdio" ]; - }; }; }