1 files changed,
10 insertions(+),
6 deletions(-)
Author:
Smirnov Olexander
ss2316544@gmail.com
Committed at:
2022-06-11 23:51:27 +0300
Parent:
7587555
M
README.md
@@ -11,9 +11,9 @@
```lua use { "olexsmir/gopher.nvim", - requires = { - "nvim-lua/plenary.nvim", -- dependencie - "nvim-treesitter/nvim-treesitter", -- dependencie + requires = { -- dependencies + "nvim-lua/plenary.nvim", + "nvim-treesitter/nvim-treesitter", }, } ```@@ -23,12 +23,15 @@
## Features 1. Install requires go tools: +This will install next tools: + +- [gomodifytags](https://github.com/fatih/gomodifytags) ```viml :GoInstallDeps ``` -1. Modify struct tags: +2. Modify struct tags: By default be added/removed `json` tag, if not set. ```viml@@ -36,14 +39,15 @@ :GoTagAdd json " For add json tag
:GoTagRm yaml " For remove yaml tag ``` -1. Run `go mod` command +3. Run `go mod` command ```viml :GoMod tidy " Runs `go mod tidy` :GoMod init asdf " Runs `go mod init asdf` ``` -1. Run `go get` command +4. Run `go get` command + Link can has a `http` or `https` prefix. You can provide more that one package url.