Files
nvim-config/lua/treesitter.lua
th3r00t 1c21e3552b Iniital upload
Removing from my nixos config to add congruency with all nvim installs
2025-08-29 00:40:20 -04:00

12 lines
386 B
Lua

local configs = require('nvim-treesitter.configs')
configs.setup({
-- ensure_installed = {
-- "ini", "bash", "c", "lua", "vim", "vimdoc", "query", "python",
-- "rust", "zig", "typescript", "svelte", "css", "html", "nix"
-- },
sync_install = false,
highlight = { enable = true },
indent = { enable = true, disable = { "norg" }, },
incremental_selection = { enable = true },
})