From 5eee7c4b89fcaa75912e35ff2d29a5f9ccb07821 Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Thu, 9 Jul 2026 07:46:39 +0200 Subject: [PATCH] fix: don't install csv parser --- nvim/lua/plugins/util/arborist.lua | 79 +++++++++++++++--------------- 1 file changed, 40 insertions(+), 39 deletions(-) diff --git a/nvim/lua/plugins/util/arborist.lua b/nvim/lua/plugins/util/arborist.lua index 70dd4a4..9415550 100644 --- a/nvim/lua/plugins/util/arborist.lua +++ b/nvim/lua/plugins/util/arborist.lua @@ -1,42 +1,43 @@ return { - -- Treesitter parser support - "arborist-ts/arborist.nvim", - config = function() - require("arborist").setup({ - update_cadence = "weekly", - prefer_wasm = false, - install_popular = false, - ensure_installed = { - "asm", - "bash", - "c", - "cpp", - "css", - "gotmpl", - "haskell", - "helm", - "html", - "hyprlang", - "java", - "javadoc", - "javascript", - "jsdoc", - "json", + -- Treesitter parser support + "arborist-ts/arborist.nvim", + config = function() + require("arborist").setup({ + update_cadence = "weekly", + prefer_wasm = false, + install_popular = false, + ensure_installed = { + "asm", + "bash", + "c", + "cpp", + "css", + "gotmpl", + "haskell", + "helm", + "html", + "hyprlang", + "java", + "javadoc", + "javascript", + "jsdoc", + "json", "latex", - "lua", - "markdown", - "python", - "scss", - "toml", - "typescript", - "tsx", - "xml", - "yaml", - }, - ignore = { - "tex", - "latex", - }, - }) - end, + "lua", + "markdown", + "python", + "scss", + "toml", + "typescript", + "tsx", + "xml", + "yaml", + }, + ignore = { + "tex", + "latex", + "csv", + }, + }) + end, }