{"id":13895103,"url":"https://github.com/zchee/nvim-go","last_synced_at":"2025-08-24T14:27:00.845Z","repository":{"id":55587259,"uuid":"49494047","full_name":"zchee/nvim-go","owner":"zchee","description":"Go development plugin for Neovim written in pure Go","archived":false,"fork":false,"pushed_at":"2020-12-20T12:51:08.000Z","size":12984,"stargazers_count":259,"open_issues_count":6,"forks_count":5,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-05-08T19:18:12.438Z","etag":null,"topics":["go","go-client","neovim","neovim-plugin","nvim-go"],"latest_commit_sha":null,"homepage":"https://pkg.go.dev/github.com/zchee/nvim-go","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zchee.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-01-12T10:54:34.000Z","updated_at":"2025-03-13T18:06:12.000Z","dependencies_parsed_at":"2022-08-15T03:50:11.435Z","dependency_job_id":null,"html_url":"https://github.com/zchee/nvim-go","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/zchee/nvim-go","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zchee%2Fnvim-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zchee%2Fnvim-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zchee%2Fnvim-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zchee%2Fnvim-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zchee","download_url":"https://codeload.github.com/zchee/nvim-go/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zchee%2Fnvim-go/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271886681,"owners_count":24838929,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-24T02:00:11.135Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["go","go-client","neovim","neovim-plugin","nvim-go"],"created_at":"2024-08-06T18:01:59.740Z","updated_at":"2025-08-24T14:27:00.793Z","avatar_url":"https://github.com/zchee.png","language":"Go","readme":"# nvim-go\n\n[![CircleCI][circleci-badge]][circleci] [![codecov.io][codecov-badge]][codecov] [![pkg.go.dev][pkg.go.dev-badge]][pkg.go.dev] [![Releases][release-badge]][release] [![GA][ga-badge]][ga]\n\nnvim-go is a Go development plugin for Neovim written in **pure** Go.\n\n## Requirements\n\n### Neovim\n\n[Installing Neovim - Neovim wiki](https://github.com/neovim/neovim/wiki/Installing-Neovim)\n\n### Go\n\n[Getting Started - The Go Programming Language](https://golang.org/doc/install)\n\nRequires Go `1.11.x` or higter. or, use `devel`.\n\n\n## Install\n\nnvim-go uses [Go 1.11 Modules](https://github.com/golang/go/wiki/Modules).\n\nWe can build nvim-go outside `$GOPATH`. It's still early development feature. For use it, needs to:\n\n```sh\nexport GO111MODULE='on'\n```\n\nAfter that, Just add following line to your `init.vim`:\n\n```vim\n\" dein.vim\ncall dein#add('zchee/nvim-go', {'build': 'make'})\n\n\" NeoBundle\nNeoBundle 'zchee/nvim-go', {'build': {'unix': 'make'}}\n\n\" vim-plug\nPlug 'zchee/nvim-go', { 'do': 'make'}\n```\n\n## Features\n\n- [ ] First goal is fully compatible vim-go.\n  - See [TODO.md](docs/TODO.md#vim-go-compatible).\n- [ ] Delve debugger GUI interface.\n\n## Acknowledgement\n\n- [fatih/vim-go](https://github.com/fatih/vim-go)\n  - nvim-go is largely inspired by vim-go. Thanks [@fatih](https://github.com/fatih) and vim-go's [contributors](https://github.com/fatih/vim-go/graphs/contributors).\n- [neovim/go-client](https://github.com/neovim/go-client)\n  - Official Go client for Neovim remote plugin interface.\n  - The first architecture was written by [@garyburd](https://github.com/garyburd).\n- Authors of vendor packages.\n- The Go Authors.\n\n## Donation\n\nPlease donate to the location in need of donations in **your country**.\n\nPeace on Earth.\n\n## License\n\nnvim-go is released under the BSD 3-Clause License.\n\n\n\u003c!-- badge links --\u003e\n[circleci]: https://app.circleci.com/pipelines/github/zchee/nvim-go\n[codecov]: https://codecov.io/gh/zchee/nvim-go/branch/main\n[pkg.go.dev]: https://pkg.go.dev/github.com/zchee/nvim-go\n[release]: https://github.com/zchee/nvim-go/releases\n[ga]: https://github.com/zchee/nvim-go\n\n[circleci-badge]: https://img.shields.io/circleci/build/github/zchee/nvim-go/main.svg?logo=circleci\u0026label=circleci\u0026style=for-the-badge\n[codecov-badge]: https://img.shields.io/codecov/c/github/zchee/nvim-go/main?logo=codecov\u0026style=for-the-badge\n[pkg.go.dev-badge]: https://bit.ly/pkg-go-dev-badge\n[release-badge]: https://img.shields.io/github/release/zchee/nvim-go.svg?style=for-the-badge\n[ga-badge]: https://gh-ga-beacon.appspot.com/UA-89201129-1/zchee/nvim-go?flat\u0026useReferer\u0026pixel\n","funding_links":[],"categories":["Go"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzchee%2Fnvim-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzchee%2Fnvim-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzchee%2Fnvim-go/lists"}