nvim/lua/cosmic/core/treesitter/init.lua
Matt Leong a9cbaf7802 Init 🚀
2021-10-19 15:25:18 -07:00

33 lines
539 B
Lua

require('nvim-treesitter.configs').setup({
ensure_installed = {
'typescript',
'javascript',
'tsx',
'html',
'css',
'bash',
'lua',
'json',
'python',
'php',
'scss',
'go',
},
highlight = {
enable = true,
use_languagetree = true,
},
indent = {
enable = true,
},
autotag = {
enable = true,
},
context_commentstring = {
enable = true,
},
refactor = {
highlight_definitions = { enable = true },
highlight_current_scope = { enable = false },
},
})