2022-10-19 00:47:07 +01:00
|
|
|
local present, treesitter = pcall(require, "nvim-treesitter.configs")
|
|
|
|
|
|
|
|
require('nvim-treesitter.install').update({ with_sync = true })
|
|
|
|
|
|
|
|
|
|
|
|
if not present then
|
2023-01-14 04:05:17 +00:00
|
|
|
return
|
2022-10-19 00:47:07 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
local options = {
|
2023-03-02 16:35:47 +00:00
|
|
|
ensure_installed = { "c", "lua", "haskell", "rust", "markdown", "org"},
|
2022-10-19 00:47:07 +01:00
|
|
|
|
2023-01-14 04:05:17 +00:00
|
|
|
highlight = {
|
|
|
|
enable = true,
|
|
|
|
use_languagetree = true,
|
2023-05-21 20:18:09 +01:00
|
|
|
additional_vim_regex_highlighting = {"org"},
|
2023-01-14 04:05:17 +00:00
|
|
|
},
|
|
|
|
indent = {
|
|
|
|
enable = true,
|
|
|
|
},
|
2022-10-19 00:47:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
treesitter.setup(options)
|