We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0af5f1e commit 81d3a5cCopy full SHA for 81d3a5c
_all_no_customization.yaml
@@ -41,6 +41,7 @@
41
42
# golang
43
- import_playbook: golang/core.yaml
44
+- import_playbook: golang/vscode.yaml
45
46
# Kubernetes
47
- import_playbook: kubectl/core.yaml
golang/vscode.yaml
@@ -0,0 +1,13 @@
1
+- name: Go (VS Code)
2
+ hosts: 127.0.0.1
3
+ connection: local
4
+
5
+ tasks:
6
+ - name: Install VS Code Extentions
7
+ command: code --install-extension {{ item }}
8
+ args:
9
+ creates: ~/.vscode/extensions/{{ item }}-*/package.json
10
+ loop:
11
+ - ms-vscode.go
12
+ - premparihar.gotestexplorer
13
+ - maxmedia.go-prof
0 commit comments