-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup-vscode.yml
86 lines (78 loc) · 2.92 KB
/
setup-vscode.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
- hosts: localhost
roles:
- role: gantsign.visual-studio-code
users:
- username: "{{ ansible_user }}"
visual_studio_code_extensions:
- vscodevim.vim
- ms-python.python
- ms-python.vscode-pylance
- ms-toolsai.jupyter
- ms-toolsai.jupyter-keymap
- ms-toolsai.jupyter-renderers
- ms-azuretools.vscode-docker
- golang.go
- rust-lang.rust-analyzer
- scala-lang.scala
- octref.vetur
- karunamurti.tera
- rebornix.ruby
- wingrunr21.vscode-ruby
- castwide.solargraph
- kaiwood.endwise
- aliariff.vscode-erb-beautify
- rayhanw.erb-helpers
- zxh404.vscode-proto3
- darkriszty.markdown-table-prettify
- njqdev.vscode-python-typehint
- redhat.vscode-yaml
- marp-team.marp-vscode
- aaron-bond.better-comments
- GitHub.github-vscode-theme
- vscode-icons-team.vscode-icons
- mtxr.sqltools
- mtxr.sqltools-driver-pg
- mtxr.sqltools-driver-mysql
- formulahendry.auto-rename-tag
- pnp.polacode
- mushan.vscode-paste-image
- bradlc.vscode-tailwindcss
- rangav.vscode-thunder-client
- RandomFractalsInc.vscode-data-preview
- cweijan.vscode-office
- Codeium.codeium
visual_studio_code_settings_overwrite: yes
visual_studio_code_settings:
{
"files.exclude": {
"**/__pycache__": true
},
"editor.fontSize": 16,
"editor.rulers": [80, 120],
"editor.guides.bracketPairs": "active",
"editor.bracketPairColorization.enabled": true,
"terminal.integrated.fontFamily": "MesloLGS NF",
"workbench.colorTheme": "GitHub Dark Dimmed",
"workbench.iconTheme": "vscode-icons",
"editor.formatOnSave": true,
"solargraph.autoformat": true,
"solargraph.diagnostics": true,
"solargraph.formatting": true,
"vim.disableExtension": true,
"pasteImage.path": "${currentFileDir}/images",
"thunder-client.saveToWorkspace": true,
"python.formatting.provider": "black",
"python.formatting.blackArgs": ["--line-length=80"],
"python.sortImports.args": ["--profile", "black"],
"[python]":
{
"editor.codeActionsOnSave":
{ "source.organizeImports": true },
},
"sqltools.format":
{
"reservedWordCase": "upper",
"language": "sql",
"linesBetweenQueries": 2,
},
}