From b983b782b5e2cc4679e012a55baaf76adb8975ab Mon Sep 17 00:00:00 2001 From: SL1900 Date: Wed, 23 Jul 2025 02:45:03 +0900 Subject: [PATCH] Changed order of compilers fro treesitter --- lua/plugins/treesitter.lua | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index 45e9fb3..374ecee 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -4,7 +4,14 @@ return { build = ":TSUpdate", config = function() vim.cmd("TSUpdate") - require("nvim-treesitter.install").compilers = { "zig", "g++", "gcc", "cc", "cl", "clang" } + require("nvim-treesitter.install").compilers = { + "zig", + "gcc", + "cc", + "cl", + "clang", + "g++", + } require("nvim-treesitter.configs").setup({ highlight = { enable = true }, ensure_installed = {