-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmarkdown.lua
More file actions
53 lines (47 loc) · 873 Bytes
/
Copy pathmarkdown.lua
File metadata and controls
53 lines (47 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
return {
{
"nvim-treesitter/nvim-treesitter",
opts = function(_, opts)
vim.list_extend(opts.ensure_installed, { "markdown", "markdown_inline" })
end,
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
-- WARN: the TOC action only showed if documentation section change !!
marksman = {},
},
},
},
{
"mfussenegger/nvim-lint",
event = { "BufReadPre", "BufNewFile" },
opts = {
linters_by_ft = {
markdown = { "markdownlint" },
},
},
},
{
"stevearc/conform.nvim",
opts = {
formatters_by_ft = {
markdown = { "deno_fmt" },
},
},
},
-- {
-- "OXY2DEV/markview.nvim",
-- dependencies = {
-- "nvim-treesitter/nvim-treesitter",
-- "nvim-tree/nvim-web-devicons"
-- },
-- },
{
"iamcco/markdown-preview.nvim",
lazy = false,
cmd = "MarkdownPreview",
build = "cd app && yarn install",
},
}