mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 19:30:01 +02:00
nvim: treesitter: move some parsers to their own config file in lang directory
This commit is contained in:
parent
bf1421c9c0
commit
71f2f5bb0d
7 changed files with 53 additions and 19 deletions
23
nvim/lua/user/plugins/lang/markdown.lua
Normal file
23
nvim/lua/user/plugins/lang/markdown.lua
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
return {
|
||||
'MeanderingProgrammer/render-markdown.nvim',
|
||||
dependencies = {
|
||||
'nvim-tree/nvim-web-devicons',
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
opts = {
|
||||
ensure_installed = { "markdown" }
|
||||
}
|
||||
}
|
||||
},
|
||||
opts = {
|
||||
code = {
|
||||
style = 'normal',
|
||||
min_width = 45,
|
||||
left_pad = 2,
|
||||
right_pad = 2,
|
||||
border = 'thick',
|
||||
above = ' ',
|
||||
below = ' ',
|
||||
},
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue