Skip to content

Instantly share code, notes, and snippets.

@midacts
Created March 4, 2022 20:05
Show Gist options
  • Save midacts/a3c8df4f7f212d30cc1ef9157bdf501e to your computer and use it in GitHub Desktop.
Save midacts/a3c8df4f7f212d30cc1ef9157bdf501e to your computer and use it in GitHub Desktop.
VS Code User Settings
{
"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