nvim.d/neovim/after/plugin/treesitter.lua

14 lines
208 B
Lua
Raw Normal View History

2022-03-26 20:02:55 +00:00
require("nvim-treesitter.configs").setup {
ensure_installed = {
"bash",
"go",
"lua",
"python",
},
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
}