chore: fix lazy loading priority

This commit is contained in:
2024-11-30 14:41:46 -05:00
parent f9677d355d
commit b2a2a60600
+2 -2
View File
@@ -3,7 +3,7 @@ return {
dependencies = {
'nvim-treesitter/nvim-treesitter',
},
event = { 'BufReadPost', 'BufWritePost', 'BufNewFile', 'VeryLazy' },
event = { 'BufReadPost', 'BufWritePost', 'BufNewFile' },
opts = {
textobjects = {
@@ -111,4 +111,4 @@ return {
-- vim.keymap.set({ 'n', 'x', 'o' }, 't', ts_repeat_move.builtin_t)
-- vim.keymap.set({ 'n', 'x', 'o' }, 'T', ts_repeat_move.builtin_T)
end,
}
}