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
Raw Normal View History

local parser_config = require("nvim-treesitter.parsers").get_parser_configs()
parser_config.d2 = {}
2022-09-15 09:57:11 +03:00
require("nvim-treesitter.configs").setup({
2022-09-16 23:42:53 +03:00
ensure_installed = {},
sync_install = false,
2022-09-15 09:57:11 +03:00
2022-09-16 23:42:53 +03:00
highlight = {
enable = true,
},
2022-09-15 09:57:11 +03:00
2022-09-16 23:42:53 +03:00
indent = {
enable = true,
},
2022-09-15 09:57:11 +03:00
})