From 1eecb2e60eefde6fcb743247e3b0d88d35ca0b5f Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Wed, 12 Jun 2024 09:12:42 +0200 Subject: [PATCH] fix: enable builtin vim syntax highlighting for python --- lua/plugins/treesitter.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index a9ce9cb..d6511af 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -28,7 +28,7 @@ return { -- Set this to `true` if you depend on 'syntax' being enabled (like for indentation). -- Using this option may slow down your editor, and you may see some duplicate highlights. -- Instead of true it can also be a list of languages - additional_vim_regex_highlighting = { "org", "php" }, + additional_vim_regex_highlighting = { "org", "php", "python" }, }, }, config = function(_, opts)