From fcb29b42e01438bb6908aa6c5ca9b7fb43e15beb Mon Sep 17 00:00:00 2001 From: Kyren223 Date: Sun, 29 Sep 2024 13:16:45 +0300 Subject: [PATCH] feat: changed checkbox icons in render-markdown to be larger --- .config/nvim/lua/custom/plugins/render-markdown.lua | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) 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' }, }