Add MDX LSP, filetype, and syntax highlighting

This commit is contained in:
Kenneth Benzie 2025-11-21 12:07:03 +00:00
parent f51bbe1236
commit 555644bc02
2 changed files with 8 additions and 0 deletions

View File

@ -16,6 +16,7 @@ if vim.fn.executable('npm') == 1 then
'dockerls', -- Dockerfile 'dockerls', -- Dockerfile
'html', -- HTML 'html', -- HTML
'jsonls', -- JSON 'jsonls', -- JSON
'mdx_analyzer', -- MDX
'pyright', -- Python 'pyright', -- Python
'vimls', -- VimScript 'vimls', -- VimScript
'yamlls', -- YAML 'yamlls', -- YAML

7
lua/plugins/mdx.lua Normal file
View File

@ -0,0 +1,7 @@
return {
'davidmh/mdx.nvim',
config = true,
dependencies = {
'nvim-treesitter/nvim-treesitter',
},
}