mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-08-08 20:15:01 +02:00
more useful plugins added: markdown render and todo comments
This commit is contained in:
parent
ff5785341e
commit
1926938717
3 changed files with 25 additions and 1 deletions
14
lua/custom/plugins/render-markdown.lua
Normal file
14
lua/custom/plugins/render-markdown.lua
Normal file
|
@ -0,0 +1,14 @@
|
|||
return {
|
||||
'MeanderingProgrammer/render-markdown.nvim',
|
||||
dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.nvim' }, -- if you use the mini.nvim suite
|
||||
-- dependencies = { 'nvim-treesitter/nvim-treesitter', 'echasnovski/mini.icons' }, -- if you use standalone mini plugins
|
||||
-- dependencies = { 'nvim-treesitter/nvim-treesitter', 'nvim-tree/nvim-web-devicons' }, -- if you prefer nvim-web-devicons
|
||||
---@module 'render-markdown'
|
||||
---@type render.md.UserConfig
|
||||
opts = {},
|
||||
config = function()
|
||||
require('render-markdown').setup {
|
||||
file_types = { 'markdown', 'quarto' },
|
||||
}
|
||||
end,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue