From 40502256193054e788b8f4d71c87068b9c067b33 Mon Sep 17 00:00:00 2001 From: Oleksandr Smirnov Date: Thu, 27 Mar 2025 23:06:38 +0200 Subject: [PATCH] chore: remove nvim-treesitter from dependencies --- README.md | 5 +---- pkg.json | 3 --- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/README.md b/README.md index acb0554..b50642e 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ It's **NOT** an LSP tool, the main goal of this plugin is to add go tooling supp Requirements: - **Neovim 0.10** or later -- Treesitter `go` parser(`:TSInstall go`) +- Treesitter `go` parser(`:TSInstall go` if you use [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter)) - [Go](https://github.com/golang/go) installed (tested on 1.23) ```lua @@ -21,9 +21,6 @@ Requirements: "olexsmir/gopher.nvim", ft = "go", -- branch = "develop" - dependencies = { - "nvim-treesitter/nvim-treesitter", - }, -- (optional) will update plugin's deps on every update build = function() vim.cmd.GoInstallDeps() diff --git a/pkg.json b/pkg.json index 4118802..7e2add3 100644 --- a/pkg.json +++ b/pkg.json @@ -6,8 +6,5 @@ "repository": { "type": "git", "url": "https://github.com/olexsmir/gopher.nvim" - }, - "dependencies": { - "https://github.com/nvim-treesitter/nvim-treesitter": "*" } }