Merge remote-tracking branch 'upstream/main' into luasnip-setupOpts

This commit is contained in:
LilleAila 2025-01-12 11:40:57 +01:00
commit 607373645f
No known key found for this signature in database
GPG key ID: D1ACCDCF2B9B9799
2 changed files with 13 additions and 0 deletions

View file

@ -46,6 +46,18 @@
)
'';
};
prettierd = {
package = pkgs.prettierd;
nullConfig = ''
table.insert(
ls_sources,
null_ls.builtins.formatting.prettierd.with({
filetypes = ${expToLua (concatLists [cfg.format.extraFiletypes ["markdown"]])},
command = "${cfg.format.package}/bin/prettierd",
})
)
'';
};
};
in {
options.vim.languages.markdown = {