{"id":13694083,"url":"https://github.com/govim/govim","last_synced_at":"2025-05-15T01:08:06.325Z","repository":{"id":34377591,"uuid":"174877054","full_name":"govim/govim","owner":"govim","description":"govim is a Go development plugin for Vim8, written in Go","archived":false,"fork":false,"pushed_at":"2025-03-13T01:25:30.000Z","size":9246,"stargazers_count":883,"open_issues_count":165,"forks_count":61,"subscribers_count":14,"default_branch":"main","last_synced_at":"2025-04-13T23:53:43.010Z","etag":null,"topics":["go","golang","govim","vim","vim8"],"latest_commit_sha":null,"homepage":"","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/govim.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":["myitcv","leitzler"]}},"created_at":"2019-03-10T20:28:00.000Z","updated_at":"2025-04-06T01:49:11.000Z","dependencies_parsed_at":"2023-07-13T08:53:35.251Z","dependency_job_id":"451f243a-f4ab-4cce-9a3b-365b9ccb2775","html_url":"https://github.com/govim/govim","commit_stats":{"total_commits":758,"total_committers":20,"mean_commits":37.9,"dds":0.2532981530343008,"last_synced_commit":"669f6011070ba6b303ff3c1ea4c5243ec1e56878"},"previous_names":["myitcv/govim"],"tags_count":36,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/govim%2Fgovim","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/govim%2Fgovim/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/govim%2Fgovim/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/govim%2Fgovim/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/govim","download_url":"https://codeload.github.com/govim/govim/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254254042,"owners_count":22039792,"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","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","golang","govim","vim","vim8"],"created_at":"2024-08-02T17:01:23.924Z","updated_at":"2025-05-15T01:08:01.307Z","avatar_url":"https://github.com/govim.png","language":"Go","readme":"## `govim` - Go development plugin for Vim8\n\nCommand `github.com/govim/govim/cmd/govim` (referred to simply as `govim`) is a Go development plugin for Vim8, much\nlike [`vim-go`](https://github.com/fatih/vim-go). But unlike `vim-go`, `govim` is written in Go, not VimScript. It has\nfeatures like code completion, format-on-save, hover details and go-to definition, all of which are driven by\n[`gopls`](https://godoc.org/golang.org/x/tools/gopls), the Language Server Protocol (LSP) server for Go. See [the\nwiki](https://github.com/govim/govim/wiki/govim-plugin-API) for more details. Installation instructions below.\n\nPackage [`github.com/govim/govim`](https://godoc.org/github.com/govim/govim) provides an API for plugin developers to\ninterface with Vim8 in Go. More details [here](PLUGIN_AUTHORS.md).\n\n`govim` requires at least [`go1.12`](https://golang.org/dl/) and [Vim `v8.1.1711`](https://www.vim.org/download.php)\n(`gvim` is also supported). [Neovim](https://neovim.io) is not (currently) supported. More details [in the\nFAQ](https://github.com/govim/govim/wiki/FAQ#what-versions-of-vim-and-go-are-supported-with-govim).\n\nInstall `govim` via:\n\n* [Vim 8 packages](http://vimhelp.appspot.com/repeat.txt.html#packages)\n  * `git clone https://github.com/govim/govim.git ~/.vim/pack/plugins/start/govim`\n* [Pathogen](https://github.com/tpope/vim-pathogen)\n  * `git clone https://github.com/govim/govim.git ~/.vim/bundle/govim`\n* [vim-plug](https://github.com/junegunn/vim-plug)\n  * `Plug 'govim/govim'`\n* [Vundle](https://github.com/VundleVim/Vundle.vim)\n  * `Plugin 'govim/govim'`\n\nYou might need some `.vimrc`/`.gvimrc` settings to get all features working: see the minimal\n[`.vimrc`](cmd/govim/config/minimal.vimrc) or [`.gvimrc`](cmd/govim/config/minimal.gvimrc) for a commented explanation\nof the required settings. For more details on `.vimrc`/`.gvimrc` settings as well as some tips and tricks, see\n[here](https://github.com/govim/govim/wiki/vimrc-tips).\n\n### What can `govim` do?\n\nSee the [`govim` plugin API](https://github.com/govim/govim/wiki/govim-plugin-API) which also has links to some demo\nscreencasts.\n\n### FAQ\n\nTop of your list of questions is likely _\"Why have you created govim? What is/was wrong with `vim-go`?\"_ For answers\nthis and more see [FAQ](https://github.com/govim/govim/wiki/FAQ).\n\n### Contributing\n\nContributions are very much welcome in the form of:\n\n* feedback\n* issues\n* PRs\n\nSee [`govim` tests](https://github.com/govim/govim/wiki/govim-tests) for details on how the modules in this repository\nare tested.\n\n","funding_links":["https://github.com/sponsors/myitcv","https://github.com/sponsors/leitzler"],"categories":["Go","Repositories"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgovim%2Fgovim","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgovim%2Fgovim","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgovim%2Fgovim/lists"}