diff options
Diffstat (limited to 'plugin-settings/nvim-treesitter.lua')
| -rw-r--r-- | plugin-settings/nvim-treesitter.lua | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/plugin-settings/nvim-treesitter.lua b/plugin-settings/nvim-treesitter.lua index 4afe91e..2fd60d2 100644 --- a/plugin-settings/nvim-treesitter.lua +++ b/plugin-settings/nvim-treesitter.lua @@ -1,13 +1 @@ -require("nvim-treesitter.configs").setup({ - -- A list of parser names, or "all" (the four listed parsers should always be installed) - ensure_installed = { "c", "lua", "vim" }, - ignore_install = { "org" }, - - -- Automatically install missing parsers when entering buffer - -- Recommendation: set to false if you don't have `tree-sitter` CLI installed locally - auto_install = true, - - highlight = { - enable = true, - }, -}) +require('nvim-treesitter').install({ 'c', 'lua', 'markdown', 'vim' }):wait(300000) -- wait max. 5 minutes |
