Created
March 4, 2022 20:05
-
-
Save midacts/a3c8df4f7f212d30cc1ef9157bdf501e to your computer and use it in GitHub Desktop.
VS Code User Settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"files.eol": "\n", | |
"files.encoding": "utf8", | |
"editor.insertSpaces": true, | |
"editor.tabSize": 4, | |
"editor.detectIndentation": true, | |
"editor.renderWhitespace": "all", | |
"editor.rulers": [80,120], | |
"window.zoomLevel": 1, | |
"workbench.colorCustomizations": { | |
"editorRuler.foreground": "#126624" | |
}, | |
"workbench.iconTheme": "vscode-icons", | |
"[golang]": { | |
"editor.insertSpaces": false, | |
"editor.tabSize": 8, | |
}, | |
"[json]": { | |
"editor.insertSpaces": true, | |
"editor.tabSize": 2, | |
}, | |
"[markdown]": { | |
"editor.insertSpaces": true, | |
"editor.tabSize": 2, | |
}, | |
"[python]": { | |
"editor.insertSpaces": true, | |
"editor.tabSize": 4, | |
}, | |
"[shellscript]": { | |
"editor.insertSpaces": true, | |
"editor.tabSize": 2, | |
}, | |
"[terraform]": { | |
"editor.insertSpaces": true, | |
"editor.tabSize": 2, | |
}, | |
"[yaml]": { | |
"editor.insertSpaces": true, | |
"editor.tabSize": 2, | |
}, | |
"terraform.indexing": { | |
"enabled": true, | |
"liveIndexing": false, | |
"delay": 500, | |
"exclude": [ | |
".terraform/**/*", | |
"**/.terraform/**/*" | |
] | |
}, | |
"terraform.languageServer": { | |
"external": true, | |
"args": [ | |
"serve" | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment