Recreate neovim configuration

This commit is contained in:
Matthew Roland
2025-08-24 22:33:05 -05:00
parent 3dc574a056
commit ae8de91f72
25 changed files with 551 additions and 1091 deletions

View File

@@ -0,0 +1,23 @@
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"
}
}
};