From 76cb2dceb080c9a20ac1610ccd16f2f9304c4631 Mon Sep 17 00:00:00 2001 From: Veneficium <85629831+veneficium42@users.noreply.github.com> Date: Fri, 14 Mar 2025 19:49:51 +0100 Subject: [PATCH] helix: add markdown-oxide for markdown lsp --- modules/home/cliPrograms/helix/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/modules/home/cliPrograms/helix/default.nix b/modules/home/cliPrograms/helix/default.nix index fe7dd4a..f02b84e 100644 --- a/modules/home/cliPrograms/helix/default.nix +++ b/modules/home/cliPrograms/helix/default.nix @@ -1,4 +1,9 @@ -{ config, lib, ... }: +{ + config, + lib, + pkgs, + ... +}: { options.settings.programs.helix = { enable = lib.mkEnableOption "enables the helix modal editor"; @@ -7,6 +12,7 @@ config = lib.mkIf config.settings.programs.helix.enable { programs.helix = { enable = true; + extraPackages = with pkgs; [ markdown-oxide ]; settings = builtins.fromTOML (builtins.readFile ./config.toml); languages = builtins.fromTOML (builtins.readFile ./languages.toml); };