Skip to content

Instantly share code, notes, and snippets.

@friveroll
Created November 20, 2022 02:46
Show Gist options
  • Save friveroll/72d033df68eb7c4433cd2e9d36646fff to your computer and use it in GitHub Desktop.
Save friveroll/72d033df68eb7c4433cd2e9d36646fff to your computer and use it in GitHub Desktop.
Global settings VSCode
{
"trunk.trunkGrayOutNonBlockingIssues": false,
"editor.inlineSuggest.enabled": true,
"git.confirmSync": false,
"git.autofetch": true,
"workbench.colorTheme": "Monokai Pro (Filter Spectrum)",
"terminal.integrated.fontFamily": "Hack NF",
"terminal.explorerKind": "external",
"editor.tabSize": 2,
"git.enableSmartCommit": true,
"workbench.iconTheme": "Monokai Pro (Filter Spectrum) Icons",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.linkedEditing": true,
"window.newWindowDimensions": "maximized",
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"files.autoSave": "afterDelay",
"[python]": {
"editor.formatOnSave": true,
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.detectIndentation": false
},
"python.terminal.activateEnvironment": true,
"python.linting.pylintEnabled": true,
"python.formatting.provider": "black",
"python.formatting.blackArgs": ["--line-length=79"],
"python.languageServer": "Pylance",
"python.analysis.typeCheckingMode": "basic",
"python.defaultInterpreterPath": "C:\\Users\\frive\\.pyenv\\pyenv-win\\versions\\3.11.0\\python.exe",
"python.REPL": "python -m ptpython",
"[markdown]": {
"editor.quickSuggestions": {
"comments": "on",
"strings": "on",
"other": "on"
}
},
"editor.fontFamily": "Monolisa",
"editor.fontWeight": "400",
"editor.lineHeight": 0,
"editor.fontSize": 14,
"editor.fontLigatures": "'ss02' on",
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "comment",
"settings": {
"fontStyle": "italic"
}
}
]
},
"redhat.telemetry.enabled": true,
"editor.formatOnPaste": true,
"files.eol": "\r\n",
"editor.renderControlCharacters": true,
"editor.renderWhitespace": "all",
"code-eol.newlineCharacter": "¬",
"code-eol.returnCharacter": "¤",
"code-eol.crlfCharacter": "¤¬",
"window.zoomLevel": 1,
"editor.guides.indentation": true,
"github.copilot.advanced": {},
"terminal.integrated.profiles.osx": {
"bash": {
"path": "bash",
"args": ["-l"],
"icon": "terminal-bash"
},
"fish": {
"path": "fish",
"args": ["-l"]
},
"python-repl": {
"path": "/Users/felipillo/miniconda3/bin/bpython",
"args": ["-i"]
}
},
"terminal.integrated.profiles.windows": {
"PowerShell 7": {
"path": "pwsh.exe",
"icon": "terminal-powershell",
"args": ["-NoLogo", "-NoExit"]
},
"PowerShell": null,
"Command Prompt": null,
"Git Bash": null
},
"terminal.integrated.defaultProfile.windows": "PowerShell 7"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment