programs.helix.languages
Home-Manager option
Language specific configuration at $XDG_CONFIG_HOME/helix/languages.toml. See https://docs.helix-editor.com/languages.html for more information.
type: (TOML value) or (list of (TOML value)) convertible to itDefault
{ }Example
declared in: <home-manager/modules/programs/helix.nix>source unavailable{ language-server.typescript-language-server = with pkgs.nodePackages; { command = "${typescript-language-server}/bin/typescript-language-server"; args = [ "--stdio" "--tsserver-path=${typescript}/lib/node_modules/typescript/lib" ]; }; language = [{ name = "rust"; auto-format = false; }]; }