diff --git a/README.md b/README.md index 49cb8ed..f6d8066 100644 --- a/README.md +++ b/README.md @@ -20,10 +20,8 @@ Requirements: { "olexsmir/gopher.nvim", ft = "go", - -- branch = "develop", -- if you want develop branch - -- keep in mind, it might break everything + -- branch = "develop", dependencies = { - "nvim-lua/plenary.nvim", "nvim-treesitter/nvim-treesitter", }, -- (optional) will update plugin's deps on every update diff --git a/lua/gopher/health.lua b/lua/gopher/health.lua index 9fa0bed..149afef 100644 --- a/lua/gopher/health.lua +++ b/lua/gopher/health.lua @@ -4,8 +4,6 @@ local u = require "gopher._utils.health_util" local deps = { 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 }, }, bin = { diff --git a/scripts/minimal_init.lua b/scripts/minimal_init.lua index e59f06a..1caae37 100644 --- a/scripts/minimal_init.lua +++ b/scripts/minimal_init.lua @@ -29,7 +29,6 @@ vim.opt.runtimepath:append(root()) vim.opt.packpath = { root ".tests/site" } vim.notify = print -install_plug "nvim-lua/plenary.nvim" install_plug "nvim-treesitter/nvim-treesitter" install_plug "echasnovski/mini.doc" -- used for docs generation install_plug "echasnovski/mini.test"