diff options
author | kylo252 <[email protected]> | 2023-02-16 16:51:35 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2023-02-16 16:51:35 +0100 |
commit | ddc86f3a8aaa1afd36cf8f1a46a29a57922efc8a (patch) | |
tree | 09fceb8654ac8d0f59f6a2bb5ae8826f48f1f020 /lua/lvim/plugins.lua | |
parent | 28b4b8d8a601ce79b72cd634d5eaa556ab8d8d23 (diff) |
fix(cmp): handle deprecated tree-sitter api (#3853)
Diffstat (limited to 'lua/lvim/plugins.lua')
-rw-r--r-- | lua/lvim/plugins.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lua/lvim/plugins.lua b/lua/lvim/plugins.lua index 61aeb221..3f8cb62c 100644 --- a/lua/lvim/plugins.lua +++ b/lua/lvim/plugins.lua @@ -117,6 +117,7 @@ local core_plugins = { require("lvim.core.autopairs").setup() end, enabled = lvim.builtin.autopairs.active, + dependencies = { "nvim-treesitter/nvim-treesitter", "hrsh7th/nvim-cmp" }, }, -- Treesitter |