make sure sql is install

This commit is contained in:
Paul Trowbridge 2024-11-14 17:00:06 -05:00
parent a9f46fa502
commit 6a7800f292

View File

@ -24,7 +24,21 @@ return {
}
end
},
{
'nvim-treesitter/nvim-treesitter',
build = ':TSUpdate',
config = function()
require'nvim-treesitter.configs'.setup {
-- Enable Treesitter syntax highlighting
ensure_installed = { "markdown", "sql","vim",
"lua", "vimdoc", "html", "css" }, -- add other languages if needed
highlight = {
enable = true,
additional_vim_regex_highlighting = { "markdown" },
},
}
end,
},
-- {
-- "nvim-treesitter/nvim-treesitter",
-- opts = {