dotfiles/.config/nvim/lua/plugins/treesitter.lua

24 lines
476 B
Lua
Raw Normal View History

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
return
2022-10-19 00:47:07 +01:00
end
local options = {
ensure_installed = { "c", "lua", "haskell", "rust", "markdown", "org"},
2022-10-19 00:47:07 +01:00
highlight = {
enable = true,
use_languagetree = true,
additional_vim_regex_highlighting = {"org"},
},
indent = {
enable = true,
},
2022-10-19 00:47:07 +01:00
}
treesitter.setup(options)