nixos/lua/config_plugins/config_treesitter.lua

9 lines
210 B
Lua
Raw Normal View History

2022-11-07 16:41:35 +00:00
require 'nvim-treesitter.configs'.setup {
ensure_installed = { "python" },
2022-11-07 15:24:06 +00:00
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
2022-11-07 16:41:35 +00:00
disable = { 'help' },
2022-11-07 15:24:06 +00:00
},
}