Skip to content

Instantly share code, notes, and snippets.

@danielnegri
Last active February 10, 2023 18:04
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 danielnegri/af3b1428b02bc3b33cf34627b50356d9 to your computer and use it in GitHub Desktop.
Save danielnegri/af3b1428b02bc3b33cf34627b50356d9 to your computer and use it in GitHub Desktop.
Visual Studio Code
// Place your settings in this file to overwrite the default settings
{
"workbench.iconTheme": "material-icon-theme",
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"editor.fontFamily": "JetBrains Mono, Consolas, 'Courier New', monospace",
"editor.fontSize": 14,
"editor.fontWeight": "300",
"editor.lineHeight": 24,
"editor.letterSpacing": 0.5,
"editor.formatOnPaste": true,
"editor.cursorBlinking": "smooth",
"editor.minimap.enabled": false,
"editor.fontLigatures": true,
"editor.renderControlCharacters": true,
"editor.tabSize": 2,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/vendor": true
},
"editor.rulers": [80, { "column": 120, "color": "#aa0000aa"}],
"workbench.colorCustomizations": {},
"files.autoSave": "afterDelay",
"go.lintTool": "revive",
"go.lintFlags": [
"-config $HOME/Developer/revive.toml"
],
"go.useLanguageServer": true,
"go.testFlags": [
"-v"
],
"python.pythonPath": "$HOME/.pyenv/versions/3.10.9/bin/python",
"files.watcherExclude": {
"**/_site/**": true,
"**/.jekyll-cache/**": true
},
"material-icon-theme.folders.color": "#90a4ae",
"debug.console.fontSize": 14,
"terminal.integrated.fontSize": 14,
"editor.inlineSuggest.enabled": true,
"workbench.colorTheme": "Community Material Theme Darker High Contrast",
"[python]": {
"editor.formatOnType": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment