gitignore

This commit is contained in:
2025-03-16 19:00:46 +03:00
parent e7d4e1c5c0
commit c42c23d5a8
4 changed files with 11 additions and 34 deletions

View File

@ -128,7 +128,7 @@ vim.api.nvim_create_user_command("RandomColorscheme", set_random_colorscheme, {}
--vim.cmd("colorscheme nightfly")
--vim.cmd("colorscheme randomhue")
--vim.cmd("colorscheme kanagawa")
vim.cmd("colorscheme slate")
vim.cmd("colorscheme tokyonight-night")

View File

@ -1,11 +1,11 @@
require('render-markdown').setup({
heading = {
icons = { '' },
enabled = true,
icons = { "",},
position = 'inline',
backgrounds = {
},
width = 'block',
},
dash = { icon = '------ ' },
dash = { icon = '-' },
sign = { enabled = false },
quote = { repeat_linebreak = true },
link = {
@ -40,6 +40,11 @@ require('render-markdown').setup({
youtube = { pattern = 'youtube%.com', icon = '󰗃 ' },
},
},
checkbox = {
unchecked = { icon = '' },
checked = { icon = '' },
},
bullet = { icons = { '', '', '-',} },
})