This repository has been archived on 2024-05-17. You can view files and clone it, but cannot push or open issues or pull requests.
neovim/plugins/syntax/treesitter.lua

16 lines
265 B
Lua

local parser_config = require("nvim-treesitter.parsers").get_parser_configs()
parser_config.d2 = {}
require("nvim-treesitter.configs").setup({
ensure_installed = {},
sync_install = false,
highlight = {
enable = true,
},
indent = {
enable = true,
},
})