diff options
| author | Christian Chiarulli <chris.machine@pm.me> | 2022-05-23 14:08:05 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-23 14:08:05 -0400 |
| commit | 24e1856862e859b60cd5b38fa6befa00f75de89a (patch) | |
| tree | e59f33031aa49087be668a09b8e7230721911cee /lua/user/treesitter.lua | |
| parent | 83357089dd90eda107f6eac21dd327dd1f483370 (diff) | |
| parent | 219abb0e6866a6f33f5332cc00ff22bcef1a9a63 (diff) | |
Merge pull request #152 from rohanghige/22-autocommands
[FIX] Tree-sitter ensure_installed error message
Diffstat (limited to 'lua/user/treesitter.lua')
| -rw-r--r-- | lua/user/treesitter.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/user/treesitter.lua b/lua/user/treesitter.lua index 6f14cfc..eadd605 100644 --- a/lua/user/treesitter.lua +++ b/lua/user/treesitter.lua @@ -4,7 +4,7 @@ if not status_ok then end configs.setup { - ensure_installed = "maintained", -- one of "all", "maintained" (parsers with maintainers), or a list of languages + ensure_installed = "all", -- "all" (parsers with maintainers), or a list of languages sync_install = false, -- install languages synchronously (only applied to `ensure_installed`) ignore_install = { "" }, -- List of parsers to ignore installing autopairs = { |
