nvim: add markdown lsp

This commit is contained in:
Kevin Baensch 2024-12-14 21:45:21 +01:00
parent 9faaef80fa
commit b274c58d84
Signed by: derped
GPG key ID: C0F1D326C7626543

View file

@ -0,0 +1,13 @@
{
lib,
config,
pkgs,
...
}:
lib.optionalString (lib.elem "nvim::lsp::markdown" config.machine.pkgs) # lua
''
lspconfig.marksman.setup {
cmd = { "${pkgs.marksman}/bin/marksman", "server" },
}
''