lina/nvim/lua/_treesitter.lua
Light3039 aa657d0ae6
Initial Commit
Add install.sh

Add .zshrc

add: nvim configs

add: toggleterm, alpha

update

update

Create README.md

major changes

major changes

add picom

updated dot files

update

shit
2025-04-25 10:37:55 +03:30

20 lines
408 B
Lua

local configs = require("nvim-treesitter.configs")
configs.setup({
ensure_installed = "all",
sync_install = false,
ignore_install = { "" },
autopairs = {
enable = true,
},
context_commenting = {
enable = true,
enable_autocmd = false,
},
highlight = {
enable = true,
disable = { "" },
additional_vim_regex_highlighting = true,
},
-- indent = { enable = true, disable = { "yaml" } },
})