diff options
author | Xavier Young <[email protected]> | 2021-12-08 13:05:15 +0800 |
---|---|---|
committer | GitHub <[email protected]> | 2021-12-08 08:35:15 +0330 |
commit | 6505826f0bb8da045a91b579714df911bbca55b0 (patch) | |
tree | f30e674c0428318b630b10d06cafd23715d2a899 | |
parent | 6770808bec1ffcada425ae514747f9380e3d3b8d (diff) |
fix(plugins): typo of pin commit of `treesitter` (#2046)
-rw-r--r-- | lua/lvim/plugins.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lvim/plugins.lua b/lua/lvim/plugins.lua index 8b968a07..0e51eba1 100644 --- a/lua/lvim/plugins.lua +++ b/lua/lvim/plugins.lua @@ -133,7 +133,7 @@ return { -- Treesitter { "nvim-treesitter/nvim-treesitter", - commit = commit.treesitter, + commit = commit.nvim_treesitter, branch = vim.fn.has "nvim-0.6" == 1 and "master" or "0.5-compat", -- run = ":TSUpdate", config = function() |