summaryrefslogtreecommitdiff
path: root/pkgs/custom-neovim/config/lua/plugins/markview.lua
blob: 08323906503e7465e597962504ba7c21f45bac04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
return {
  "markview.nvim",
  enabled = false,
  lazy = false,
  priority = 45, -- Load before treesitter.
  after = function ()
    require("markview").setup {
      preview = {
        hybrid_modes = {"n"},
      },
    }
  end
}