helix: add markdown-oxide for markdown lsp
This commit is contained in:
parent
6902f014e6
commit
76cb2dceb0
1 changed files with 7 additions and 1 deletions
|
|
@ -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);
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue