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

View file

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