Skip to content

Instantly share code, notes, and snippets.

@ProgramAlgo
Last active December 19, 2019 08:40
Show Gist options
  • Save ProgramAlgo/2b2a3368b985ac56e173c55360372e97 to your computer and use it in GitHub Desktop.
Save ProgramAlgo/2b2a3368b985ac56e173c55360372e97 to your computer and use it in GitHub Desktop.
{
"workbench.iconTheme": "vscode-icons",
"editor.fontFamily": "'Sarasa Term SC', Menlo, Monaco, 'Courier New', monospace",
"editor.fontSize": 16,
"terminal.integrated.fontFamily": "'SourceCodePro+Powerline+Awesome Regular','Sarasa Term SC',MesloLGS NF",
"terminal.integrated.fontSize": 14,
"workbench.colorCustomizations": {
"terminal.background": "#090300",
"terminal.foreground": "#A5A2A2",
"terminalCursor.background": "#A5A2A2",
"terminalCursor.foreground": "#A5A2A2",
"terminal.ansiBlack": "#090300",
"terminal.ansiBlue": "#01A0E4",
"terminal.ansiBrightBlack": "#5C5855",
"terminal.ansiBrightBlue": "#01A0E4",
"terminal.ansiBrightCyan": "#B5E4F4",
"terminal.ansiBrightGreen": "#01A252",
"terminal.ansiBrightMagenta": "#A16A94",
"terminal.ansiBrightRed": "#DB2D20",
"terminal.ansiBrightWhite": "#F7F7F7",
"terminal.ansiBrightYellow": "#FDED02",
"terminal.ansiCyan": "#B5E4F4",
"terminal.ansiGreen": "#01A252",
"terminal.ansiMagenta": "#A16A94",
"terminal.ansiRed": "#DB2D20",
"terminal.ansiWhite": "#A5A2A2",
"terminal.ansiYellow": "#FDED02"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": false
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": false
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": false
},
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": false
},
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact",
"vue",
"html",
],
"eslint.alwaysShowStatus": true,
"editor.suggestSelection": "first",
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"terminal.integrated.shell.osx": "/bin/zsh",
"files.associations": {
"*.vue": "vue"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true,
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment