Fix highlighting

This commit is contained in:
Bryan Ramos 2023-03-27 12:34:38 -04:00
parent 4b403585de
commit bd3192653b
2 changed files with 8 additions and 1 deletions

View file

@ -24,3 +24,10 @@ dofile(vim.fn.stdpath('config') .. '/plugins.lua')
vim.opt.expandtab = true vim.opt.expandtab = true
vim.opt.tabstop = 2 vim.opt.tabstop = 2
-- Treesitter Enable
require'nvim-treesitter.configs'.setup {
highlight = {
enable = true,
},
}