···2323- Treesitter parser for `go`(`:TSInstall go` if you use [nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter))
2424- [Go](https://github.com/golang/go) installed
25252626+> [!IMPORTANT]
2727+> If you prefer using other forges, this repository is also mirrored at:
2828+> - [tangled.org](https://tangled.org): [`https://tangled.org/olexsmir.xyz/gopher.nvim`](https://tangled.org/olexsmir.xyz/gopher.nvim)
2929+> - [codeberg.org](https://codeberg.org): [`https://codeberg.org/olexsmir/gopher.nvim`](https://codeberg.org/olexsmir/gopher.nvim)
3030+2631```lua
2727--- NOTE: the plugin is already lazy-loaded
2828--- it adds ~1ms to startup time
3232+-- NOTE: this plugin is already lazy-loaded and adds only about 1ms
3333+-- of load time to your config
2934{
3035 "olexsmir/gopher.nvim",
3136 ft = "go",
3237 -- branch = "develop"
3333- -- (optional) will update plugin's deps on every update
3838+ -- (optional) updates the plugin's dependencies on each update
3439 build = function()
3540 vim.cmd.GoInstallDeps()
3641 end,