Created
April 11, 2020 20:43
-
-
Save pratyushtewari/6e6f5578797cb95dc612b35eae962a4d 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
{ | |
"editor.colorDecorators": false, | |
"workbench.colorTheme": "Cobalt Next", | |
"workbench.iconTheme": "material-icon-theme", | |
"git.autoRepositoryDetection": false, | |
"workbench.startupEditor": "newUntitledFile", | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"workbench.editor.highlightModifiedTabs": true, | |
// The font weight to use within the terminal for bold text. | |
"editor.quickSuggestionsDelay": 1000, | |
"editor.multiCursorModifier": "ctrlCmd", | |
"window.zoomLevel": 0, | |
"terminal.external.osxExec": "iTerm2.app", | |
"terminal.integrated.shell.osx": "/bin/zsh", | |
// to make it load the .bashrc profile | |
"terminal.integrated.shellArgs.osx": [], | |
"terminal.integrated.fontFamily": "Roboto Mono", | |
"terminal.integrated.fontWeightBold": "400", | |
"terminal.integrated.fontWeight": "400", | |
"terminal.integrated.lineHeight": 1.2, | |
"terminal.integrated.drawBoldTextInBrightColors": true, | |
"terminal.integrated.copyOnSelection": true, | |
"selectinsidesidebar.defaultStyle": { | |
"overviewRulerColor": "yellowgreen", | |
}, | |
"workbench.colorCustomizations": { | |
//"editor.selectionHighlightBackground": "#ff0000", | |
//"editor.selectionBackground": "#88a9ffd0" | |
"editor.selectionHighlightBorder": "#2f4153", | |
"editor.wordHighlightBackground": "#5278ca", | |
"editorCursor.foreground": "#F12360" | |
//"editor.selectionHighlightBackground": "#16b2b8" | |
}, | |
"colorize.languages": [ | |
"cs", | |
"javascript", | |
"javascriptreact", | |
"css", | |
"sass", | |
"scss", | |
"less", | |
"postcss", | |
"sss", | |
"stylus", | |
"xml", | |
"svg", | |
"json", | |
"jsx", | |
"html", | |
"vue" | |
], | |
"colorize.enable_search_variables": true, | |
"breadcrumbs.enabled": true, | |
// "jshint.nodePath": "/Users/f644726/.nvm/versions/node/v11.4.0/lib/node_modules/jshint", | |
// "colorize.ignore_search_variables_info": true, | |
"editor.minimap.showSlider": "always", | |
"search.exclude": { | |
"*.map": true | |
}, | |
"editor.hover.delay": 100000, | |
"diffEditor.renderSideBySide": true, | |
"[json]": { | |
"editor.defaultFormatter": "vscode.json-language-features" | |
}, | |
"editor.foldingStrategy": "indentation", | |
"alignment.indentBase": "dontchange", | |
"gitlens.views.search.enabled": false, | |
"gitlens.mode.statusBar.enabled": false, | |
"gitlens.views.lineHistory.enabled": false, | |
"gitlens.hovers.enabled": false, | |
"gitlens.currentLine.enabled": false, | |
"gitlens.hovers.currentLine.over": "line", | |
"gitlens.codeLens.enabled": false, | |
"editor.snippetSuggestions": "none", | |
"editor.suggest.localityBonus": true, | |
"scm.providers.visible": 1, | |
"explorer.openEditors.visible": 15, | |
"git.autofetch": true, | |
"svgPreview.style": { | |
"html": { | |
// "background-position": "0 0, 13px 13px", | |
// "background-size": "26px 26px", | |
// "background-image": "linear-gradient(45deg, #141414 25%, transparent 25%, transparent 75%, #141414 75%, #141414), linear-gradient(45deg, #141414 25%, transparent 25%, transparent 75%, #141414 75%, #141414)" | |
}, | |
"img": { | |
"border": "1px solid rgba(0,0,0,.5)", | |
"background-image": "linear-gradient(45deg, #808080 25%, transparent 25%), linear-gradient(-45deg, #808080 25%, transparent 25%), linear-gradient(45deg, transparent 75%, #808080 75%), linear-gradient(-45deg, transparent 75%, #808080 75%)", | |
"background-size": "20px 20px", | |
"background-position": "0 0, 0 10px, 10px -10px, -10px 0px", | |
} | |
}, | |
"files.associations": { | |
"*.cocoascript": "javascript" | |
}, | |
"editor.fontFamily": "Operator Mono, Roboto Mono, Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontWeight": "100", | |
"editor.fontSize": 13, | |
"[vue]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"editor.tabSize": 2, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"terminal.integrated.fontSize": 11, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"prettier.printWidth": 120, | |
"prettier.vueIndentScriptAndStyle": true, | |
"editor.minimap.renderCharacters": false, | |
"bracketPairColorizer": { | |
"showBracketsInGutter": true, | |
"consecutivePairColors": [ | |
["<", "</"], | |
["<", "/>"], | |
[ | |
"Gold", | |
"Orchid", | |
"LightSkyBlue" | |
], | |
"Red" | |
] | |
}, | |
// Controls if quick suggestions should show up while typing | |
"editor.quickSuggestions": { | |
"other": true, | |
"comments": false, | |
"strings": false | |
}, | |
// Controls whether suggestions should be accepted on commit characters. For example, in JavaScript, the semi-colon (`;`) can be a commit character that accepts a suggestion and types that character. | |
"editor.acceptSuggestionOnCommitCharacter": true, | |
// Controls if suggestions should be accepted on 'Enter' - in addition to 'Tab'. Helps to avoid ambiguity between inserting new lines or accepting suggestions. The value 'smart' means only accept a suggestion with Enter when it makes a textual change | |
"editor.acceptSuggestionOnEnter": "on", | |
// Controls if suggestions should automatically show up when typing trigger characters | |
"editor.suggestOnTriggerCharacters": true, | |
// Controls if pressing tab inserts the best suggestion and if tab cycles through other suggestions | |
"editor.tabCompletion": "on", | |
// Enable word based suggestions | |
"editor.wordBasedSuggestions": true, | |
// Enable parameter hints | |
"editor.parameterHints.enabled": true, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment