From c8dd316b3e533c9c398ef36f076c99d6f5e2567f Mon Sep 17 00:00:00 2001 From: Sebastian Bugge Date: Mon, 22 Jan 2024 18:24:54 +0100 Subject: [PATCH] Add tresitter config. --- lua/plugins/treesitter.lua | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 lua/plugins/treesitter.lua diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua new file mode 100644 index 0000000..72f1aec --- /dev/null +++ b/lua/plugins/treesitter.lua @@ -0,0 +1,9 @@ +return { + { + "nvim-treesitter/nvim-treesitter", + opts = { + ensure_installed = { "python", "lua", "rust", "perl" }, + auto_install = true, + }, + }, +}