tangled
alpha
login
or
join now
cixel.bsky.social
/
config
0
fork
atom
dotfiles files and stuff
0
fork
atom
overview
issues
pulls
pipelines
nvim: disable treesitter-context by default
Ehden Sinai
1 month ago
5ffebbb0
a3550080
+1
-1
1 changed file
expand all
collapse all
unified
split
nix
home-manager
nvim
config
treesitter.lua
+1
-1
nix/home-manager/nvim/config/treesitter.lua
···
125
125
126
126
local ts_context = require('treesitter-context')
127
127
ts_context.setup {
128
128
-
enable = true,
128
128
+
enable = false, -- enable this manually with ,l
129
129
}
130
130
vim.keymap.set('n', '<leader>l', function() ts_context.toggle() end, opt)