kickstart.nvim/lua/custom/plugins/README.md

53 lines
769 B
Markdown
Raw Normal View History

2023-05-23 22:20:31 +02:00
### NULL-LS
`goland`:
```shell
go install github.com/incu6us/goimports-reviser/v3@latest
go install mvdan.cc/gofumpt@latest
go install github.com/segmentio/golines@latest
2023-05-24 23:16:13 +02:00
go install github.com/go-delve/delve/cmd/dlv@latest # for go debug
```
Substitute Mode
```shell
2023-05-25 15:58:01 +02:00
:V:s/pattern/
2023-05-24 23:16:13 +02:00
```
Check for key combination
```shell
:nmap # show all maps for normal mode
:nmap <leader> # show maps for the leader
:verbose nmap <leader> # show where the map was last set
:telescope keymaps
```
Open new Tab
```shell
<c>wT
2023-05-23 22:20:31 +02:00
```
2023-05-24 23:16:13 +02:00
Moving between tabs
```shell
gt # next tab
gT # previous tab
```
2023-07-26 21:11:04 +02:00
### HTTP client
install pynvim
```
sudo apt install python3-pynvim
```
install requests
```
sudo apt install python3-requests
```
2023-10-25 21:56:32 +02:00
format json (require jq installed)
```
:%!jq .
```