Archived
0
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
neovim-config/lua/plugins/configs/treesitter.lua
Daryl Ronningen 69181599a5 rewrite config from scratch (#1)
Makes all the plugins lazyload, remove plugins with duplicate uses and just general nit picks and improvements

Reviewed-on: Relms/neovim-config#1
2022-09-02 17:42:32 +00:00

21 lines
377 B
Lua

local treesitter = require("nvim-treesitter.configs")
treesitter.setup({
sync_install = false,
auto_install = true,
highlight = {
enable = true,
},
rainbow = {
enable = true,
},
autopairs = {
enable = true,
extended_mode = true,
},
context_commentstring = {
enable = true,
enable_autocmd = false,
},
indent = { enable = true, disable = { "yaml" } },
})