From 9e69e3554ee1dd56f055423de09a0a575fbe73b0 Mon Sep 17 00:00:00 2001 From: Marek Muzyka Date: Fri, 14 Nov 2025 19:26:59 +0100 Subject: Basic config --- lua/plugins/treesitter.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lua/plugins/treesitter.lua (limited to 'lua/plugins/treesitter.lua') diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua new file mode 100644 index 0000000..d42aca5 --- /dev/null +++ b/lua/plugins/treesitter.lua @@ -0,0 +1,11 @@ +return { + "nvim-treesitter/nvim-treesitter", + config = function() + require"nvim-treesitter.configs".setup({ + ensure_installed = { "cpp", "ocaml", "python" }, + highlight = { + enable = true, + } + }) + end +} -- cgit v1.2.3