summaryrefslogtreecommitdiff
path: root/dot-config/nvim/lua/plugins/markdown.lua
blob: 13518607995f9163101b0d946567cdc7179c4b01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
return {
  {
    -- Disable linting
    "mfussenegger/nvim-lint",
    optional = true,
    opts = {
      linters_by_ft = {
        markdown = {},
      },
    },
  },
}