Files
rootiest 4545e18a68 feat(config): various config updates
Packaged updates to configuration.
2025-08-23 11:52:26 -04:00

52 lines
1.6 KiB
Lua

--- @module "plugins.languages"
--- This module defines the languages plugins spec for the Neovim configuration.
-- ╭─────────────────────────────────────────────────────────╮
-- │ Languages │
-- ╰─────────────────────────────────────────────────────────╯
return {
{ -- Jinja
'armyers/Vim-Jinja2-Syntax',
},
{ -- Render-markdown
'MeanderingProgrammer/render-markdown.nvim',
enabled = false,
opts = {
heading = {
-- Determins if a border is added above and below headings
border = true,
above = '▂',
-- Used below heading for border
below = '🮂',
},
file_types = { 'markdown', 'Avante' },
},
ft = { 'markdown', 'Avante' },
},
{ -- MarkView
'OXY2DEV/markview.nvim',
ft = { 'markdown', 'Avante' },
opts = function()
local presets = require('markview.presets')
return {
checkboxes = presets.checkboxes.nerd,
markdown = {
headings = presets.headings.simple,
},
}
end,
},
{ -- Markdown Preview
'iamcco/markdown-preview.nvim',
cmd = require('data.cmd').markdown_preview,
ft = { 'markdown' },
build = function()
vim.fn['mkdp#util#install']()
end,
},
{ -- CookLang
'luizribeiro/vim-cooklang',
lazy = false,
},
}