Skip to content

Commit

Permalink
fix(treesitter): disable treesitter indent by default, since it has t…
Browse files Browse the repository at this point in the history
…oo many issues. See #297
  • Loading branch information
folke committed Feb 18, 2023
1 parent f08d004 commit 329a2da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/lazyvim/plugins/treesitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ return {
---@type TSConfig
opts = {
highlight = { enable = true },
indent = { enable = true },
indent = { enable = false },
context_commentstring = { enable = true, enable_autocmd = false },
ensure_installed = {
"bash",
Expand Down

0 comments on commit 329a2da

Please sign in to comment.