mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 00:25:47 +02:00
10 lines
253 B
Lua
10 lines
253 B
Lua
return {
|
|
"nvim-treesitter/nvim-treesitter-context",
|
|
lazy = true,
|
|
event = { "BufRead", "VeryLazy" },
|
|
opts = {},
|
|
keys = {
|
|
{ "<leader>T", "", desc = " TS Context" },
|
|
{ "<leader>Tt", "<cmd>TSContextToggle<cr>", desc = "Toggle Context" },
|
|
},
|
|
}
|