Updated treesitter.lua t not require help.

This commit is contained in:
Luke Else 2023-07-05 20:03:51 +01:00
parent 8f2af48023
commit 44f0129aa8

View File

@ -1,6 +1,6 @@
require'nvim-treesitter.configs'.setup { require'nvim-treesitter.configs'.setup {
-- A list of parser names, or 'all' -- A list of parser names, or 'all'
ensure_installed = { 'help', 'c', 'cpp', 'lua', 'rust', 'vimdoc' }, ensure_installed = { 'c', 'cpp', 'lua', 'rust', 'vimdoc' },
-- Install parsers synchronously (only applied to `ensure_installed`) -- Install parsers synchronously (only applied to `ensure_installed`)
sync_install = false, sync_install = false,
@ -19,4 +19,4 @@ require'nvim-treesitter.configs'.setup {
-- Instead of true it can also be a list of languages -- Instead of true it can also be a list of languages
additional_vim_regex_highlighting = false, additional_vim_regex_highlighting = false,
}, },
} }