Muh dotfiles

This commit is contained in:
2025-05-10 10:18:28 +03:00
commit 0f4558597e
84 changed files with 4306 additions and 0 deletions

View File

@ -0,0 +1,14 @@
return {
"nvim-treesitter/nvim-treesitter",
event = "User LazyFile",
-- lazy = false, --TODO
build = ":TSUpdate",
dependencies = "nvim-treesitter/nvim-treesitter-textobjects",
init = function()
vim.o.foldenable = true
vim.o.foldlevel = 99
vim.o.foldmethod = "expr"
vim.o.foldexpr = "nvim_treesitter#foldexpr()"
end,
config = function() require "configs.treesitter" end
}