diff options
author | Chris Patti <feoh@feoh.org> | 2024-04-17 14:02:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-17 14:02:24 -0400 |
commit | 6d6b3f38c1e243e2fd8f96b6b6eff1720c110cab (patch) | |
tree | ceaf8bf716b934d1604d02089ed97f07f33cc9a1 | |
parent | fabeb86d8bb6cf1df5e05377f3abca10e4a25a24 (diff) |
Fix: #847 - add prefer_git to treesitter config (#856)
-rw-r--r-- | init.lua | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -817,6 +817,8 @@ require('lazy').setup({ config = function(_, opts) -- [[ Configure Treesitter ]] See `:help nvim-treesitter` + -- Prefer git instead of curl in order to improve connectivity in some environments + require('nvim-treesitter.install').prefer_git = true ---@diagnostic disable-next-line: missing-fields require('nvim-treesitter.configs').setup(opts) |