Skip to content

Instantly share code, notes, and snippets.

@anshulxyz
Created March 30, 2022 05:46
Show Gist options
  • Save anshulxyz/73f57a0f49da522f53b67acd0e13d01a to your computer and use it in GitHub Desktop.
Save anshulxyz/73f57a0f49da522f53b67acd0e13d01a to your computer and use it in GitHub Desktop.
VSCode settings
{
"editor.minimap.enabled": false,
"workbench.iconTheme": "material-icon-theme",
"editor.suggestSelection": "first",
"editor.renderWhitespace": "trailing",
"editor.rulers": [
80,
120
],
"[css]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "MikeBovenlander.formate"
},
"diffEditor.ignoreTrimWhitespace": false,
"[javascript]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[latex]": {
"editor.tabSize": 2,
},
"[html]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "vscode.html-language-features"
},
"[json]": {
"editor.tabSize": 2,
"editor.defaultFormatter": "vscode.json-language-features"
},
"files.associations": {
"*.extension": "language"
},
"explorer.confirmDelete": false,
"explorer.sortOrder": "type",
"python.languageServer": "Pylance",
"editor.fontFamily": "'JetBrains Mono', Menlo, 'Cascadia Code', 'Fira Code', 'monospace', monospace",
"editor.fontLigatures": true,
"[jsonc]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
"[javascriptreact]": {
"editor.tabSize": 2,
},
"python.formatting.provider": "black",
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"bracket-pair-colorizer-2.colors": [
"#0096C7",
"#d44682",
"#18ba4e"
],
"codesnap.realLineNumbers": true,
"codesnap.showWindowControls": false,
"codesnap.backgroundColor": "#B00D23",
"[go]": {
"editor.tabSize": 2,
"editor.insertSpaces": false,
"editor.formatOnSave": true,
},
"git.confirmSync": false,
"terminal.integrated.inheritEnv": false,
"git.autofetch": true,
"python.insidersChannel": "off",
"extensions.ignoreRecommendations": false,
"go.useLanguageServer": true,
"settingsSync.ignoredExtensions": [
"dustypomerleau.rust-syntax",
"that70schris.arcade"
],
"files.exclude": {
"**/__pycache__": true,
"**/.mypy_cache": true,
"**/.pytest_cache": true,
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
"search.exclude": {
"**/venv": true
},
"files.autoSave": "onFocusChange",
"editor.cursorBlinking": "phase",
"editor.cursorSmoothCaretAnimation": true,
"bracket-pair-colorizer-2.depreciation-notice": false,
"workbench.colorTheme": "Night Owl Light (No Italics)",
"zenMode.fullScreen": false,
"zenMode.hideLineNumbers": false,
"workbench.sideBar.location": "right",
"workbench.activityBar.visible": false,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment