diff --git a/.config/nvim/lua/custom/plugins/render-markdown.lua b/.config/nvim/lua/custom/plugins/render-markdown.lua index 3e3a34a..4769afc 100644 --- a/.config/nvim/lua/custom/plugins/render-markdown.lua +++ b/.config/nvim/lua/custom/plugins/render-markdown.lua @@ -6,12 +6,8 @@ return { sign = { enabled = false }, bullet = { icons = { '', '◆' } }, checkbox = { - -- unchecked = { icon = '󰄱 ' }, - -- checked = { icon = '󰄲 ' }, - unchecked = { icon = '󰄰 ' }, - checked = { icon = '󰄳 ' }, - custom = { todo = { rendered = '◯ ' } }, + unchecked = { icon = ' ' }, + checked = { icon = ' ' }, }, }, - dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' }, }