diff options
| author | Carlo Sala <carlosalag@protonmail.com> | 2022-10-31 12:21:40 +0100 |
|---|---|---|
| committer | Lewis Russell <me@lewisr.dev> | 2022-10-31 12:51:25 +0000 |
| commit | 80503a99104e461599ef8810a64bce1b6d235f6a (patch) | |
| tree | 19490577e43446b03396afcec0fa29b6047f0eb2 | |
| parent | Update lockfile.json (diff) | |
| download | nvim-treesitter-80503a99104e461599ef8810a64bce1b6d235f6a.tar nvim-treesitter-80503a99104e461599ef8810a64bce1b6d235f6a.tar.gz nvim-treesitter-80503a99104e461599ef8810a64bce1b6d235f6a.tar.bz2 nvim-treesitter-80503a99104e461599ef8810a64bce1b6d235f6a.tar.lz nvim-treesitter-80503a99104e461599ef8810a64bce1b6d235f6a.tar.xz nvim-treesitter-80503a99104e461599ef8810a64bce1b6d235f6a.tar.zst nvim-treesitter-80503a99104e461599ef8810a64bce1b6d235f6a.zip | |
fix(configs): ensure_installed can be a string
| -rw-r--r-- | lua/nvim-treesitter/configs.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/nvim-treesitter/configs.lua b/lua/nvim-treesitter/configs.lua index 12fbb4cd1..6db2935a0 100644 --- a/lua/nvim-treesitter/configs.lua +++ b/lua/nvim-treesitter/configs.lua @@ -11,7 +11,7 @@ local M = {} ---@class TSConfig ---@field modules {[string]:TSModule} ---@field sync_install boolean ----@field ensure_installed string[] +---@field ensure_installed string[]|string ---@field ignore_install string[] ---@field auto_install boolean ---@field update_strategy string |
