diff options
| author | A Farzat <a@farzat.xyz> | 2026-02-04 09:01:53 +0300 |
|---|---|---|
| committer | A Farzat <a@farzat.xyz> | 2026-02-04 09:01:53 +0300 |
| commit | f9122cd66cebc5384916f4620a387b29c2e816de (patch) | |
| tree | 0cc8fd19f7178754bf792786262ba514ae258d23 /plugin-settings | |
| parent | d7f7c0586512424b17da314aba60c2875aaf860f (diff) | |
| download | nvim-f9122cd66cebc5384916f4620a387b29c2e816de.tar.gz nvim-f9122cd66cebc5384916f4620a387b29c2e816de.zip | |
Diffstat (limited to 'plugin-settings')
| -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 |
