vim-settings/neovim/lua/plugins/treesitter.lua

25 lines
511 B
Lua
Raw Normal View History

-- Configures nvim-treesitter
require'nvim-treesitter.configs'.setup{
2021-09-16 01:13:17 +00:00
incremental_selection = {enable = true},
-- Indent appears to be broken right now
2021-09-16 01:13:17 +00:00
indent = {enable = false},
textobjects = {enable = true},
highlight = {
enable = true,
disable = {},
},
ensure_installed = {
"bash",
"css",
"fish",
"go",
"gomod",
"javascript",
"json",
"lua",
"python",
"rust",
"yaml",
},
}