From 48b7fc5333344e21f052ac79b3e4976364863572 Mon Sep 17 00:00:00 2001 From: Hau Nguyen Date: Mon, 18 Mar 2024 23:41:30 +0700 Subject: [PATCH] config(nvim): add python to treesitter --- data/nvim/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/nvim/init.lua b/data/nvim/init.lua index 21ac23c..a82d9cc 100644 --- a/data/nvim/init.lua +++ b/data/nvim/init.lua @@ -434,7 +434,7 @@ require("lazy").setup({ enabled = true, disable = function(lang, bufnr) -- Skip if not go, proto - if lang ~= "go" and lang ~= "proto" and lang ~= "lua" then + if lang ~= "go" and lang ~= "lua" and lang ~= "proto" and lang ~= "python" then return true end