Refactored nvim config to make it easier and less insanely nested
This commit is contained in:
16
.config/nvim/lua/plugins/render-markdown.lua
Normal file
16
.config/nvim/lua/plugins/render-markdown.lua
Normal file
@@ -0,0 +1,16 @@
|
||||
return {
|
||||
'MeanderingProgrammer/render-markdown.nvim',
|
||||
event = { 'BufReadPre', 'BufNewFile' },
|
||||
keys = {
|
||||
{ '<leader>mt', '<<cmd>RenderMarkdown toggle<cr>'}
|
||||
},
|
||||
opts = {
|
||||
render_modes = true,
|
||||
sign = { enabled = false },
|
||||
bullet = { icons = { '', '◆' } },
|
||||
checkbox = {
|
||||
unchecked = { icon = ' ' },
|
||||
checked = { icon = ' ' },
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user