dotfiles/nvim/.config/nvim/lua/treesitter.lua
Sanchayan Maity 795fe5208b Revert "nvim: Enable treesitter refactor and text objects"
This reverts commit 41f1e85929.

Enabling these two, seems to somehow result in highlighting not working
anymore. So disable them.
2021-01-14 20:05:41 +05:30

7 lines
179 B
Lua

require'nvim-treesitter.configs'.setup {
ensure_installed = { "bash", "c", "cpp", "fennel", "java", "lua", "python", "rust", "toml" },
highlight = {
enable = true,
},
}