Last active
June 24, 2019 18:08
-
-
Save daniel-san/81a1c1b470ceaab30a6d3b6f4b73d9fe to your computer and use it in GitHub Desktop.
My vscode settings -- still updating
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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