2023-02-20 11:09:53 +00:00
|
|
|
return {
|
|
|
|
"nvim-treesitter/nvim-treesitter",
|
2023-02-20 11:32:30 +00:00
|
|
|
event = { "BufReadPre", "BufNewFile" },
|
2023-02-20 11:09:53 +00:00
|
|
|
config = function()
|
|
|
|
require("nvim-treesitter.configs").setup {
|
|
|
|
highlight = {
|
|
|
|
enable = true,
|
|
|
|
additional_vim_regex_highlighting = false,
|
|
|
|
disable = { "fortran" },
|
|
|
|
},
|
|
|
|
}
|
|
|
|
end,
|
|
|
|
}
|