This repository has been archived on 2024-09-06. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
nvim_config/lua/plugins/treesitter.lua
2023-03-14 12:38:15 +01:00

22 lines
372 B
Lua

-- Tree sitter
local ts = require 'nvim-treesitter.configs'
ts.setup {
ensure_installed = {
'bash',
'c',
'cmake',
'dockerfile',
'latex',
'lua',
'markdown',
'markdown_inline',
'python',
'yaml'
},
sync_install = false,
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
}
}