From dd139d90fafb3e67cd026f81122cecfde3090bdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Sun, 10 Nov 2024 01:43:54 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=EF=B8=8F=20deps(nvim):=20import=20?= =?UTF-8?q?new=20zig=20extra?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/nvim/lua/plugins/extras/lang/zig.lua | 30 +------------------- 1 file changed, 1 insertion(+), 29 deletions(-) diff --git a/.config/nvim/lua/plugins/extras/lang/zig.lua b/.config/nvim/lua/plugins/extras/lang/zig.lua index 2798d7d5..9e3d3757 100644 --- a/.config/nvim/lua/plugins/extras/lang/zig.lua +++ b/.config/nvim/lua/plugins/extras/lang/zig.lua @@ -1,41 +1,13 @@ return { - { - "nvim-treesitter/nvim-treesitter", - opts = { - ensure_installed = { - "zig", - }, - }, - }, - { - "neovim/nvim-lspconfig", - opts = { - servers = { - zls = {}, - }, - }, - }, + { import = "lazyvim.plugins.extras.lang.zig" }, { "williamboman/mason.nvim", opts = { ensure_installed = { - "zls", "codelldb", }, }, }, - { - "nvim-neotest/neotest", - optional = true, - dependencies = { - "lawrence-laz/neotest-zig", - }, - opts = { - adapters = { - ["neotest-zig"] = {}, - }, - }, - }, { "mfussenegger/nvim-dap", optional = true,