Skip to content

Instantly share code, notes, and snippets.

@daniel-san
Last active June 24, 2019 18:08
Show Gist options
  • Save daniel-san/81a1c1b470ceaab30a6d3b6f4b73d9fe to your computer and use it in GitHub Desktop.
Save daniel-san/81a1c1b470ceaab30a6d3b6f4b73d9fe to your computer and use it in GitHub Desktop.
My vscode settings -- still updating
{
"window.titleBarStyle": "custom",
"editor.fontFamily": "mononoki,'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'",
"editor.fontSize": 16,
"editor.lineHeight": 30,
"workbench.colorTheme": "One Dark Pro Vivid",
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "newUntitledFile",
"editor.formatOnSave": true,
"editor.rulers": [80, 120],
"editor.tabSize": 2,
"terminal.integrated.fontSize": 16,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"prettier.eslintIntegration": true,
// per language settings
"[php]": {
"editor.tabSize": 4
},
// vim plugin settings
"vim.handleKeys": {
"<C-d>": false,
"<C-x>": false,
"<C-c>": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment