mirror of
https://github.com/mqttr/dotfiles.git
synced 2025-12-15 04:25:50 -06:00
24 lines
493 B
Lua
24 lines
493 B
Lua
return {
|
|
{ -- Highlight, edit, and navigate code
|
|
'nvim-treesitter/nvim-treesitter',
|
|
build = ':TSInstall markdown markdown_inline html latex typst yaml',
|
|
branch = 'master',
|
|
lazy = false,
|
|
},
|
|
{
|
|
"OXY2DEV/markview.nvim",
|
|
lazy = false,
|
|
|
|
-- For `nvim-treesitter` users.
|
|
priority = 49,
|
|
|
|
-- For blink.cmp's completion
|
|
-- source
|
|
dependencies = {
|
|
"saghen/blink.cmp",
|
|
"echasnovski/mini.icons",
|
|
"nvim-tree/nvim-web-devicons"
|
|
}
|
|
}
|
|
};
|