From efff293a2db200713c6e69c36b9c9da01125ae52 Mon Sep 17 00:00:00 2001 From: jrupinski Date: Thu, 26 Sep 2024 08:55:48 +0200 Subject: [PATCH] Revert "fix: disable ts indenting for Ruby" This reverts commit 7892c0c354639985b1cf36f11d175201590e267b. --- init.lua | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/init.lua b/init.lua index ea86b792..119a8d1c 100644 --- a/init.lua +++ b/init.lua @@ -891,14 +891,8 @@ require('lazy').setup({ ensure_installed = { 'bash', 'c', 'diff', 'html', 'lua', 'luadoc', 'markdown', 'markdown_inline', 'query', 'vim', 'vimdoc' }, -- Autoinstall languages that are not installed auto_install = true, - highlight = { - enable = true, - -- Some languages depend on vim's regex highlighting system (such as Ruby) for indent rules. - -- If you are experiencing weird indenting issues, add the language to - -- the list of additional_vim_regex_highlighting and disabled languages for indent. - additional_vim_regex_highlighting = { 'ruby' }, - }, - indent = { enable = true, disable = { 'ruby' } }, + highlight = { enable = true }, + indent = { enable = true }, }, -- There are additional nvim-treesitter modules that you can use to interact -- with nvim-treesitter. You should go explore a few and see what interests you: