1
0
Fork 0

treesitter: add htmldjango

This commit is contained in:
Felipe 2023-08-02 01:32:45 -04:00
parent 8b0a257ee5
commit 73e1b5f4f5
Signed by: pitbuster
SSH key fingerprint: SHA256:HDYu2Pm4/TmSX8GBwV49UvFWr1Ljg8XlHxKeCpjJpOk

View file

@ -110,6 +110,9 @@ vim.keymap.set("n", "<C-L>", ":nohlsearch<CR>")
---- Treesitter ---- ---- Treesitter ----
local ts = require("nvim-treesitter.configs") local ts = require("nvim-treesitter.configs")
ts.setup({ ts.setup({
auto_install = true,
sync_install = false,
ignore_install = {},
ensure_installed = { ensure_installed = {
"bash", "bash",
"c", "c",
@ -127,6 +130,7 @@ ts.setup({
"gitignore", "gitignore",
"go", "go",
"html", "html",
"htmldjango",
"http", "http",
"ini", "ini",
"javascript", "javascript",