Skip to content

Instantly share code, notes, and snippets.

@paikwiki
Last active March 15, 2020 12:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paikwiki/2b1afb48670368c36cbdb2032c9fac22 to your computer and use it in GitHub Desktop.
Save paikwiki/2b1afb48670368c36cbdb2032c9fac22 to your computer and use it in GitHub Desktop.
VS Code User Settings(Deprecated)
// Deprecated: You can see new settings.json: https://github.com/paikwiki/setup-my-dev-machine/
// ~/Library/Application Support/Code/User/settings.json
{
"42header.username": "cbaek",
"42header.email": "cbaek@student.42seoul.kr",
"workbench.colorTheme": "Monokai Dimmed",
"workbench.activityBar.visible": false,
"workbench.startupEditor": "newUntitledFile",
"workbench.colorCustomizations": {
"editorRuler.foreground": "#0b445a"
},
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"editor.tabSize": 4,
"editor.insertSpaces": false,
"editor.rulers": [80],
"editor.renderWhitespace": "all",
"editor.wordWrap": "bounded",
"editor.minimap.enabled": false,
"editor.tabCompletion": "onlySnippets",
"editor.fontFamily": "Space Mono, Menlo, monospace, D2Coding for Powerline",
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "comment",
"settings": {
"fontStyle": "italic"
}
}
]
},
"gitlens.advanced.messages": {
"suppressShowKeyBindingsNotice": true
},
"window.zoomLevel": 1,
"[markdown]": {
"editor.wordWrap": "bounded",
"editor.wordWrapColumn": 80
},
"[js]": {
"editor.tabSize": 2,
},
"code-eol.color":"#0b445a",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment