mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
11 lines
253 B
Lua
11 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" },
|
||
|
},
|
||
|
}
|