From 69a722cfd33076a4d63f1d49e52bed427453eabe Mon Sep 17 00:00:00 2001 From: dacctal <120422854+dacctal@users.noreply.github.com> Date: Thu, 5 Mar 2026 01:21:45 +0000 Subject: initial commit --- .config/nvim/lua/plugins/treesitter.lua | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 .config/nvim/lua/plugins/treesitter.lua (limited to '.config/nvim/lua/plugins/treesitter.lua') diff --git a/.config/nvim/lua/plugins/treesitter.lua b/.config/nvim/lua/plugins/treesitter.lua new file mode 100755 index 0000000..90b57fb --- /dev/null +++ b/.config/nvim/lua/plugins/treesitter.lua @@ -0,0 +1,15 @@ +return { + "nvim-treesitter/nvim-treesitter", + branch = "master", + lazy = false, + build = ":TSUpdate", + config = function() + local config = require("lazy") + config.setup({ + auto_install = true, + highlight = { enable = true }, + ensure_installed = { "v", "c", "lua", "vim", "markeown" }, + indent = { enable = true }, + }) + end, +} -- cgit v1.2.3