docs: remove plenary from deps

This commit is contained in:
Oleksandr Smirnov 2025-02-26 13:31:30 +02:00
parent 883b92b63d
commit 2dd45be37f
No known key found for this signature in database
3 changed files with 1 additions and 6 deletions

View file

@ -20,10 +20,8 @@ Requirements:
{ {
"olexsmir/gopher.nvim", "olexsmir/gopher.nvim",
ft = "go", ft = "go",
-- branch = "develop", -- if you want develop branch -- branch = "develop",
-- keep in mind, it might break everything
dependencies = { dependencies = {
"nvim-lua/plenary.nvim",
"nvim-treesitter/nvim-treesitter", "nvim-treesitter/nvim-treesitter",
}, },
-- (optional) will update plugin's deps on every update -- (optional) will update plugin's deps on every update

View file

@ -4,8 +4,6 @@ local u = require "gopher._utils.health_util"
local deps = { local deps = {
plugin = { plugin = {
{ lib = "dap", msg = "required for `gopher.dap`", optional = true },
{ lib = "plenary", msg = "required for everything in gopher.nvim", optional = false },
{ lib = "nvim-treesitter", msg = "required for everything in gopher.nvim", optional = false }, { lib = "nvim-treesitter", msg = "required for everything in gopher.nvim", optional = false },
}, },
bin = { bin = {

View file

@ -29,7 +29,6 @@ vim.opt.runtimepath:append(root())
vim.opt.packpath = { root ".tests/site" } vim.opt.packpath = { root ".tests/site" }
vim.notify = print vim.notify = print
install_plug "nvim-lua/plenary.nvim"
install_plug "nvim-treesitter/nvim-treesitter" install_plug "nvim-treesitter/nvim-treesitter"
install_plug "echasnovski/mini.doc" -- used for docs generation install_plug "echasnovski/mini.doc" -- used for docs generation
install_plug "echasnovski/mini.test" install_plug "echasnovski/mini.test"