mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
29 lines
663 B
Lua
29 lines
663 B
Lua
-- This won't be loaded
|
|
-- I keep this since render-markdown sometimes buggy
|
|
return {
|
|
{
|
|
"OXY2DEV/markview.nvim",
|
|
lazy = false,
|
|
dependencies = {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
"nvim-tree/nvim-web-devicons",
|
|
},
|
|
opts = {
|
|
checkboxes = require("markview-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",
|
|
},
|
|
},
|
|
},
|
|
}
|