From a6f0a973cffd439556ab1d586a116023a53f6191 Mon Sep 17 00:00:00 2001 From: "asep.komarudin" Date: Wed, 26 Jun 2024 18:39:52 +0700 Subject: [PATCH] add: config treesitter contex --- lua/plugins/treesitter.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index e9148ae..611965e 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -2,6 +2,10 @@ return { { "nvim-treesitter/nvim-treesitter", dependencies = { + { + "nvim-treesitter/nvim-treesitter-context", + enabled = pcode.tscontext or false, + }, { "JoosepAlviste/nvim-ts-context-commentstring", lazy = true, @@ -182,8 +186,4 @@ return { require("illuminate").configure(opts) end, }, - { - "nvim-treesitter/nvim-treesitter-context", - enabled = pcode.tscontext or false, - }, }