mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
30 lines
696 B
Lua
30 lines
696 B
Lua
return {
|
|
{
|
|
"OXY2DEV/markview.nvim",
|
|
lazy = false,
|
|
dependencies = {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
"nvim-tree/nvim-web-devicons",
|
|
},
|
|
config = function()
|
|
local presets = require("markview.presets")
|
|
require("markview").setup({
|
|
checkboxes = presets.checkboxes.nerd,
|
|
headings = {
|
|
enable = true,
|
|
shift_width = 1,
|
|
heading_1 = {
|
|
style = "label",
|
|
hl = "MarkviewH1"
|
|
}
|
|
},
|
|
code_blocks = {
|
|
style = "language",
|
|
language_direction = "right",
|
|
hl = "MarkviewCode",
|
|
info_hl = "MarkviewCodeInfo"
|
|
}
|
|
})
|
|
end
|
|
}
|
|
}
|