Skip to content

Instantly share code, notes, and snippets.

@aperkaz
Created March 14, 2019 14:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aperkaz/ddf0badbf25b22639e6e93ed66f263b7 to your computer and use it in GitHub Desktop.
Save aperkaz/ddf0badbf25b22639e6e93ed66f263b7 to your computer and use it in GitHub Desktop.
VS configuration
{
"window.title": "${dirty} ${activeEditorMedium}${separator}${rootName}",
"editor.formatOnPaste": true,
"editor.fontFamily": "Operator Mono",
"terminal.integrated.fontFamily": "Fira Code",
"terminal.integrated.fontSize": 14,
"terminal.integrated.lineHeight": 1.5,
"editor.fontSize": 18,
"editor.renderWhitespace": "boundary",
"editor.autoIndent": true,
"terminal.external.osxExec": "iTerm.app",
"editor.lineHeight": 40,
"editor.letterSpacing": 1,
"javascript.implicitProjectConfig.checkJs": true,
"prettier.eslintIntegration": true,
"prettier.cssEnable": [
"css",
"less",
"scss",
"sass"
],
"prettier.printWidth": 120,
"prettier.useTabs": true,
"prettier.singleQuote": true,
"eslint.autoFixOnSave": false,
"eslint.packageManager": "yarn",
"editor.trimAutoWhitespace": false,
"todohighlight.exclude": "{**/vendor/**,**/node_modules/**,**/tmp/**,**/bower_components/**,**/dist/**,**/build/**,**/docs/**,**/.vscode/**,**/_output/**,**/*.min.*,**/*.map}",
"todohighlight.keywords": [
"TODO:", //another custom keyword
{
"text": "TODO:", // custom text to be highlighted
"color": "#00F", // the text color, any css color identifier is valid
"backgroundColor": "", // the text background color
"overviewRulerColor": "#FF9800" //the color of the ruler mark on the scroll bar. use rgba() and define transparent colors to play well with other decorations.
},
"TODONOW:", //another custom keyword
{
"text": "TODONOW:", // custom text to be highlighted
"color": "#f442e5", // the text color, any css color identifier is valid
"backgroundColor": "", // the text background color
"overviewRulerColor": "#f442e5" //the color of the ruler mark on the scroll bar. use rgba() and define transparent colors to play well with other decorations.
},
"FIXME:",
{
"text": "FIXME:",
"color": "#EE6492",
"backgroundColor": "",
"overviewRulerColor": "#EE6492"
},
"NOTE:",
{
"text": "NOTE:",
"color": "#98ff98",
"backgroundColor": "",
"overviewRulerColor": "#98ff98"
}
],
"gitlens.advanced.messages": {
"suppressCommitHasNoPreviousCommitWarning": false,
"suppressCommitNotFoundWarning": false,
"suppressFileNotUnderSourceControlWarning": false,
"suppressGitVersionWarning": false,
"suppressLineUncommittedWarning": false,
"suppressNoRepositoryWarning": false,
"suppressResultsExplorerNotice": false,
"suppressShowKeyBindingsNotice": true
},
"gitlens.historyExplorer.enabled": true,
"window.zoomLevel": 0,
"gitlens.views.fileHistory.enabled": true,
"gitlens.views.lineHistory.enabled": true,
"editor.mouseWheelZoom": true,
"editor.codeActionsOnSave": {
"source.fixAll.tslint": true
},
"javascript.updateImportsOnFileMove.enabled": "never",
"editor.formatOnSave": true,
"workbench.colorTheme": "Monokai",
"javascript.referencesCodeLens.enabled": true,
"editor.minimap.enabled": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment