Last active
April 4, 2019 11:55
-
-
Save slavabez/a6d4d623a8e8539da0f3272a7bd2e1a2 to your computer and use it in GitHub Desktop.
VSCode settings
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
// Slava Bezgachev personal settings.json | |
{ | |
// UI improvements | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.formatOnSave": true, | |
"editor.wordWrap": "on", | |
// Git settings | |
"git.autofetch": true, | |
"git.confirmSync": false, | |
"git.enableSmartCommit": true, | |
// GitLens | |
"gitlens.currentLine.enabled": false, | |
// Editor save settings | |
"files.autoSave": "afterDelay", | |
"files.autoSaveDelay": 5000, | |
// Fonts, icons, themes | |
"editor.fontLigatures": true, | |
"workbench.colorTheme": "lucy", | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.fontFamily": "\"Fira Code\"", | |
// ESLint | |
"eslint.packageManager": "yarn", | |
"eslint.run": "onSave", | |
// Emmet | |
"emmet.includeLanguages": { | |
"javascript": "javascriptreact" | |
}, | |
// Other UI things | |
"workbench.settings.editor": "json", | |
"editor.cursorBlinking": "solid", | |
"explorer.confirmDragAndDrop": false, | |
// Macro extension macros | |
"macros": { | |
"collapseAndClose": [ | |
"workbench.files.action.collapseExplorerFolders", | |
"workbench.action.closeAllEditors" | |
] | |
}, | |
// Spelling stuff | |
"cSpell.language": "en-GB,ru", | |
"cSpell.userWords": [ | |
"Bezgachev", | |
"Eventus", | |
"Knockout", | |
"Repo", | |
"Slava", | |
"Truthy", | |
"codecov", | |
"deserialise", | |
"gmail", | |
"hackathon", | |
"junit", | |
"serialise", | |
"serialised", | |
"slavabez", | |
"testid", | |
"uniqid", | |
"workflow", | |
"workflows", | |
"yadicer", | |
"Костанай", | |
"Петропавл" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment