14 lines
360 B
Lua
14 lines
360 B
Lua
return {
|
|
"nvim-treesitter/nvim-treesitter",
|
|
event = { "BufReadPre", "BufNewFile" },
|
|
config = function()
|
|
require("nvim-treesitter.configs").setup {
|
|
highlight = {
|
|
enable = true,
|
|
additional_vim_regex_highlighting = false,
|
|
disable = { "fortran" },
|
|
},
|
|
}
|
|
end,
|
|
}
|