Skip to content

Instantly share code, notes, and snippets.

@dexterbrylle
Last active September 11, 2017 06:23
Show Gist options
  • Save dexterbrylle/1c7b43609aa5ea3650cfe63fd42e58ea to your computer and use it in GitHub Desktop.
Save dexterbrylle/1c7b43609aa5ea3650cfe63fd42e58ea to your computer and use it in GitHub Desktop.
VS Code User Settings
{
"workbench.colorCustomizations": {
// The background is optional
"terminal.background": "#282a36",
"terminal.foreground": "#eff0eb",
"terminal.ansiBlack": "#282a36",
"terminal.ansiRed": "#ff5c57",
"terminal.ansiGreen": "#5af78e",
"terminal.ansiYellow": "#f3f99d",
"terminal.ansiBlue": "#57c7ff",
"terminal.ansiMagenta": "#ff6ac1",
"terminal.ansiCyan": "#9aedfe",
"terminal.ansiWhite": "#f1f1f0",
"terminal.ansiBrightBlack": "#686868",
"terminal.ansiBrightRed": "#ff5c57",
"terminal.ansiBrightGreen": "#5af78e",
"terminal.ansiBrightYellow": "#f3f99d",
"terminal.ansiBrightBlue": "#57c7ff",
"terminal.ansiBrightMagenta": "#ff6ac1",
"terminal.ansiBrightCyan": "#9aedfe",
"terminal.ansiBrightWhite": "#eff0eb"
},
// Editor
"editor.fontSize": 12,
"editor.fontFamily": "Fira Code",
"editor.wordWrap": "on",
"editor.fontLigatures": true,
"editor.formatOnSave": true,
"editor.tabCompletion": true,
"editor.dragAndDrop": false,
"editor.formatOnPaste": true,
"editor.tabSize": 2,
//Workbench
"workbench.startupEditor": "none",
"workbench.iconTheme": "vscode-icons",
"workbench.colorTheme": "One Dark Pro Vivid",
// Files
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
// Semistandard
"semistandard.run": "onSave",
// Files
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/node_modules": true
},
"window.restoreFullscreen": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment