From 57a2bac8fbb97cdc207034edc2fb2b31453e0c62 Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Sun, 20 Apr 2025 21:12:32 +0200 Subject: [PATCH] fix: disable treesitter highlightig for docker files --- lua/ow/plugins/treesitter.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/ow/plugins/treesitter.lua b/lua/ow/plugins/treesitter.lua index 838a70e..5e564de 100644 --- a/lua/ow/plugins/treesitter.lua +++ b/lua/ow/plugins/treesitter.lua @@ -19,7 +19,7 @@ return { auto_install = true, highlight = { enable = true, - disable = {}, + disable = { "dockerfile" }, -- Setting this to true will run `:h syntax` and tree-sitter at the same time. -- Set this to `true` if you depend on 'syntax' being enabled (like for indentation).