From 94baa93f4cb8638796b0b8449292704ea821fe48 Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Fri, 12 Jan 2024 22:16:45 +0100 Subject: [PATCH] fix: fix autoindent when not using autopairs --- lua/plugins/treesitter.lua | 7 ------- 1 file changed, 7 deletions(-) diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index 1596f92..192dd5b 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -23,15 +23,8 @@ local function setup() disable = {}, additional_vim_regex_highlighting = { "org", }, }, - - -- Indentation based on treesitter for the = operator. - -- NOTE: This is an experimental feature. - indent = { - enable = true, - }, }) - vim.opt.foldmethod = "expr" vim.opt.foldexpr = "nvim_treesitter#foldexpr()" vim.opt.foldenable = false