From 960b48199e9af3dbd795fa4abd171aaeb1910620 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Tue, 28 Jan 2025 12:06:16 +0100 Subject: [PATCH] Enable additional_vim_regex_highlighting --- .config/nvim/lua/plugins.lua | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua index 8ef87ea..febbb09 100644 --- a/.config/nvim/lua/plugins.lua +++ b/.config/nvim/lua/plugins.lua @@ -186,12 +186,11 @@ vim.g.vdebug_options = { port = '9000' } -- Treesitter -- require'nvim-treesitter.configs'.setup { - ensure_installed = { 'haskell', 'php', 'lua' }, + ensure_installed = { + 'haskell', 'php', 'lua', 'css', 'dockerfile', 'html', 'javascript', 'markdown', 'ruby', 'vue' + }, highlight = { enable = true, - additional_vim_regex_highlighting = false - }, - indent = { - enable = true + additional_vim_regex_highlighting = true } }