Enable additional_vim_regex_highlighting

This commit is contained in:
Eugen Wissner 2025-01-28 12:06:16 +01:00
parent 96b0313c36
commit 960b48199e
Signed by: belka
GPG Key ID: A27FDC1E8EE902C0

View File

@ -186,12 +186,11 @@ vim.g.vdebug_options = { port = '9000' }
-- Treesitter -- Treesitter
-- --
require'nvim-treesitter.configs'.setup { require'nvim-treesitter.configs'.setup {
ensure_installed = { 'haskell', 'php', 'lua' }, ensure_installed = {
'haskell', 'php', 'lua', 'css', 'dockerfile', 'html', 'javascript', 'markdown', 'ruby', 'vue'
},
highlight = { highlight = {
enable = true, enable = true,
additional_vim_regex_highlighting = false additional_vim_regex_highlighting = true
},
indent = {
enable = true
} }
} }