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
20 lines
408 B
Lua
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" } },
|
|
})
|