Enable TreeSitter highlighting

This commit is contained in:
Edward Litherland-Smith 2022-08-08 17:28:50 +01:00
parent 606f61a11a
commit 5107b6069a

View file

@ -54,3 +54,10 @@ require('lspconfig')['fortls'].setup{
on_attach = on_attach, on_attach = on_attach,
flags = lsp_flags, flags = lsp_flags,
} }
require'nvim-treesitter.configs'.setup {
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
}