Last active
March 15, 2021 14:29
-
-
Save stephencorwin/a8ddf5e51d9fe21e00bd51361103870a to your computer and use it in GitHub Desktop.
VS Code Settings
This file contains 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
{ | |
////////////////////////////////////////////////// | |
/// THEME :: Hyper | |
////////////////////////////////////////////////// | |
"workbench.colorTheme": "Hyper Term Black", | |
"editor.fontFamily": "Fira Code, Menlo, 'DejaVu Sans Mono', Consolas, 'Lucida Console', monospace", | |
"terminal.integrated.fontFamily": "Fira Code, Menlo, 'DejaVu Sans Mono', Consolas, 'Lucida Console', monospace", | |
////////////////////////////////////////////////// | |
/// CROSS THEME | |
////////////////////////////////////////////////// | |
"editor.fontSize": 18, | |
"terminal.integrated.fontSize": 12, | |
"editor.wordWrap": "off", | |
"editor.renderWhitespace": "boundary", | |
"explorer.confirmDragAndDrop": false, | |
"extensions.ignoreRecommendations": true, | |
"editor.minimap.enabled": false, | |
"editor.renderLineHighlight": "none", | |
"editor.cursorStyle": "line", | |
"editor.fontLigatures": true, | |
////////////////////////////////////////////////// | |
/// SCM | |
////////////////////////////////////////////////// | |
"git.enableSmartCommit": true, | |
"git.confirmSync": false, | |
"git.autofetch": true, | |
"gitlens.advanced.messages": { | |
"suppressCommitHasNoPreviousCommitWarning": false, | |
"suppressCommitNotFoundWarning": false, | |
"suppressFileNotUnderSourceControlWarning": false, | |
"suppressGitVersionWarning": false, | |
"suppressLineUncommittedWarning": false, | |
"suppressNoRepositoryWarning": false, | |
}, | |
"diffEditor.renderSideBySide": true, | |
"gitlens.keymap": "chorded", | |
"gitlens.showWhatsNewAfterUpgrades": false, | |
"editor.codeLens": false, | |
////////////////////////////////////////////////// | |
/// FILE OPTIONS | |
////////////////////////////////////////////////// | |
"files.eol": "\n", | |
"editor.insertSpaces": true, | |
"editor.tabSize": 2, | |
"files.trimTrailingWhitespace": true, | |
"files.insertFinalNewline": true, | |
"files.trimFinalNewlines": true, | |
"[markdown]": { | |
"files.trimTrailingWhitespace": false, | |
"editor.defaultFormatter": "yzhang.markdown-all-in-one" | |
}, | |
"[html]": { | |
"editor.formatOnSave": false | |
}, | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.hg": true, | |
"**/CVS": true, | |
"**/.DS_Store": true, | |
"**/.vscode": true | |
}, | |
"search.exclude": { | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/docs": true, | |
"**/.next": true, | |
"**/dist": true, | |
"**/build": true, | |
"**/.vscode": true | |
}, | |
////////////////////////////////////////////////// | |
/// LINTING | |
////////////////////////////////////////////////// | |
"prettier.requireConfig": true, | |
"editor.codeActionsOnSave": { | |
"source.fixAll.eslint": true | |
}, | |
"editor.formatOnSave": true, | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact", | |
"typescript", | |
"typescriptreact" | |
], | |
"eslint.format.enable": true, | |
"typescript.format.enable": false, | |
"javascript.format.enable": false, | |
"json.format.enable": false, | |
"html.format.enable": false, | |
////////////////////////////////////////////////// | |
/// OTHER | |
////////////////////////////////////////////////// | |
"typescript.check.npmIsInstalled": false, | |
"editor.detectIndentation": false, | |
"typescript.updateImportsOnFileMove.enabled": "never", | |
"explorer.confirmDelete": false, | |
"javascript.updateImportsOnFileMove.enabled": "never", | |
"workbench.startupEditor": "newUntitledFile", | |
"update.showReleaseNotes": false, | |
"typescript.implementationsCodeLens.enabled": true, | |
"typescript.referencesCodeLens.enabled": true, | |
"workbench.panel.defaultLocation": "right", | |
"aws.profile": "profile:ScoreWin - LGR", | |
"aws.samcli.location": "C:\\Program Files\\Amazon\\AWSSAMCLI\\bin\\sam.cmd", | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"workbench.editorAssociations": [ | |
{ | |
"viewType": "default", | |
"filenamePattern": "git-rebase-todo" | |
} | |
], | |
} |
Author
stephencorwin
commented
Mar 15, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment