nvim: add regex and markdown parsers

This commit is contained in:
thomasabishop 2024-02-18 15:03:40 +00:00
parent 3c1bca93f1
commit c33ddff8ef
2 changed files with 3 additions and 1 deletions

View file

@ -32,6 +32,7 @@ mason_lspconfig.setup({
"lua_ls",
"jsonls",
"yamlls",
"marksman",
},
-- auto-install configured servers (with lspconfig)
automatic_installation = true, -- not the same as ensure_installed
@ -45,6 +46,7 @@ mason_null_ls.setup({
"eslint_d", -- ts/js linter
"black",
"pylint",
"marksman",
},
automatic_installation = true,

View file

@ -25,7 +25,7 @@ treesitter.setup({
"html",
"css",
"scss",
-- "markdown",
"regex",
"markdown_inline",
"graphql",
"bash",