diff options
| author | Thomas Schmucker <ts@its1.de> | 2026-03-09 10:07:05 +0100 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2026-03-09 10:07:05 +0100 |
| commit | 345feb68e83fdcfca389135003a42f6c3ff1a59a (patch) | |
| tree | 1548ecab803167bd364652f22041a23a67363b7b /nvim/lua/plugins/treesitter.lua | |
| parent | b8f1da5ea149068ba3aae66685b64c251ad45461 (diff) | |
| download | dotfiles-345feb68e83fdcfca389135003a42f6c3ff1a59a.tar.gz dotfiles-345feb68e83fdcfca389135003a42f6c3ff1a59a.tar.bz2 dotfiles-345feb68e83fdcfca389135003a42f6c3ff1a59a.zip | |
Neovim: Bessere Ausnutzung von lazy.nvim
Diffstat (limited to 'nvim/lua/plugins/treesitter.lua')
| -rw-r--r-- | nvim/lua/plugins/treesitter.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nvim/lua/plugins/treesitter.lua b/nvim/lua/plugins/treesitter.lua index 235c0b5..66cd717 100644 --- a/nvim/lua/plugins/treesitter.lua +++ b/nvim/lua/plugins/treesitter.lua | |||
| @@ -9,7 +9,8 @@ return { | |||
| 9 | "nvim-treesitter/nvim-treesitter", | 9 | "nvim-treesitter/nvim-treesitter", |
| 10 | branch = "main", | 10 | branch = "main", |
| 11 | build = ":TSUpdate", | 11 | build = ":TSUpdate", |
| 12 | lazy = false, | 12 | event = "BufReadPost", |
| 13 | lazy = true, | ||
| 13 | config = function() | 14 | config = function() |
| 14 | local treesitter = require("nvim-treesitter") | 15 | local treesitter = require("nvim-treesitter") |
| 15 | local langs = require("config.treesitter").languages | 16 | local langs = require("config.treesitter").languages |
