diff options
| author | Robert Günzler <r@gnzler.io> | 2026-02-13 18:08:30 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2026-02-13 18:08:30 +0100 |
| commit | 8afe3fa8d88ae56e96f65897935ef508581ac5f7 (patch) | |
| tree | 8e199f0aad89babaa5c460bd4d5ebdbd746ab615 /.config/nvim/lua/plugins/treesitter.lua | |
| parent | 63feeb9f369fc6176e85c1c2d8fcc863caad1946 (diff) | |
*
Automated-commit-by: dots Signed-off-by: Robert Günzler <r@gnzler.io>
Diffstat (limited to '')
| -rw-r--r-- | .config/nvim/lua/plugins/treesitter.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/nvim/lua/plugins/treesitter.lua b/.config/nvim/lua/plugins/treesitter.lua index 93f396d..e064a8b 100644 --- a/.config/nvim/lua/plugins/treesitter.lua +++ b/.config/nvim/lua/plugins/treesitter.lua @@ -2,12 +2,12 @@ return { { 'nvim-treesitter/nvim-treesitter', branch = 'master', + lazy = false, dependencies = { { 'nvim-treesitter/nvim-treesitter-refactor', lazy = false }, { 'nvim-treesitter/nvim-treesitter-textobjects', lazy = false }, -- { 'nvim-treesitter/playground', cmd = { 'TSPlayground' } }, }, - lazy = false, build = ':TSUpdate', config = function(_, opts) require('nvim-treesitter.configs').setup(opts) |