diff --git a/README.md b/README.md index a2b3bde..0793d90 100644 --- a/README.md +++ b/README.md @@ -82,22 +82,22 @@ require("gopher").setup { Install plugin's go deps -```vim -:GoInstallDeps -``` + ```vim + :GoInstallDeps + ``` -This will install the following tools: + This will install the following tools: -- [gomodifytags](https://github.com/fatih/gomodifytags) -- [impl](https://github.com/josharian/impl) -- [gotests](https://github.com/cweill/gotests) -- [iferr](https://github.com/koron/iferr) -- [dlv](github.com/go-delve/delve/cmd/dlv) + - [gomodifytags](https://github.com/fatih/gomodifytags) + - [impl](https://github.com/josharian/impl) + - [gotests](https://github.com/cweill/gotests) + - [iferr](https://github.com/koron/iferr) + - [dlv](github.com/go-delve/delve/cmd/dlv)
- Add and remove tags for structs(via gomodifytags) + Add and remove tags for structs via gomodifytags) By default `json` tag will be added/removed, if not set: @@ -119,7 +119,7 @@ This will install the following tools:
- Generating tests via [gotests](https://github.com/cweill) + Generating tests via gotests ```vim @@ -170,7 +170,7 @@ This will install the following tools:
- Interface implementation via [impl](https://github.com/josharian/impl) + Interface implementation via impl Syntax of the command: @@ -206,7 +206,7 @@ This will install the following tools:
- Generate `if err != nil {` via [iferr](https://github.com/koron/iferr) + Generate `if err != nil {` via iferr Set the cursor on the line with `err` and execute @@ -218,12 +218,12 @@ This will install the following tools:
- Setup [nvim-dap](https://github.com/mfussenegger/nvim-dap) for go in one line + Setup nvim-dap for go in one line - >[!IMPORTANT] - > - > [nvim-dap](https://github.com/mfussenegger/nvim-dap) has to be installed +>[!IMPORTANT] +> +> [nvim-dap](https://github.com/mfussenegger/nvim-dap) has to be installed ```lua require("gopher.dap").setup()