1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
local status_ok, configs = pcall(require, "nvim-treesitter.configs") if not status_ok then return end configs.setup({ ensure_installed = "all", ignore_install = { "" }, highlight = { enable = true, disable = { "css" }, }, auto_install = true, sync_install = false, modules = {}, autopairs = { enable = true, }, indent = { enable = true, }, }) vim.filetype.add({ pattern = { [".*/hypr/.*%.conf"] = "hyprlang" }, })