Skip to content

Commit

Permalink
feat(lang): add markdown support (#1718)
Browse files Browse the repository at this point in the history
* feat(lang): add markdown support

* feat: use peek.nvim instead of markdown-preview. Disable and show warning when deno is not installed

* feat: add markdown-preview back

---------

Co-authored-by: Folke Lemaitre <folke.lemaitre@gmail.com>
  • Loading branch information
jakub-kozlowicz and folke committed Oct 14, 2023
1 parent 121df70 commit b3d46bc
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions lua/lazyvim/plugins/extras/lang/markdown.lua
@@ -0,0 +1,64 @@
return {
{
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
if type(opts.ensure_installed) == "table" then
vim.list_extend(opts.ensure_installed, { "markdown", "markdown_inline" })
end
end,
},
{
"williamboman/mason.nvim",
opts = function(_, opts)
opts.ensure_installed = opts.ensure_installed or {}
vim.list_extend(opts.ensure_installed, { "markdownlint" })
end,
},
{
"nvimtools/none-ls.nvim",
optional = true,
opts = function(_, opts)
local nls = require("null-ls")
opts.sources = vim.list_extend(opts.sources or {}, {
nls.builtins.diagnostics.markdownlint,
})
end,
},
{
"mfussenegger/nvim-lint",
optional = true,
opts = {
linters_by_ft = {
markdown = { "markdownlint" },
},
},
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
marksman = {},

This comment has been minimized.

Copy link
@briandipalma

briandipalma Oct 16, 2023

Contributor

Should marksman be installed via mason or is it being installed in some other fashion?

This comment has been minimized.

Copy link
@folke

folke Oct 16, 2023

Author Collaborator

Good point! Just fixed it

},
},
},

-- Markdown preview
{
"iamcco/markdown-preview.nvim",
cmd = { "MarkdownPreviewToggle", "MarkdownPreview", "MarkdownPreviewStop" },
build = function()
vim.fn["mkdp#util#install"]()
end,
keys = {
{
"<leader>cp",
ft = "markdown",
"<cmd>MarkdownPreviewToggle<cr>",
desc = "Peek (Markdown Preview)",
},
},
config = function()
vim.cmd([[do FileType]])
end,
},
}

0 comments on commit b3d46bc

Please sign in to comment.