Created
June 12, 2023 14:25
-
-
Save SolarisSy/2c363887ae3718117329b9a3e6f0b5bd to your computer and use it in GitHub Desktop.
👽VsCode 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
{ | |
"workbench.colorTheme": "One Dark Pro Darker", | |
"workbench.editorAssociations": { | |
"*.ipynb": "jupyter-notebook", | |
"*.pyc": "default" | |
}, | |
"terminal.integrated.sendKeybindingsToShell": true, | |
"notebook.cellToolbarLocation": { | |
"default": "right", | |
"jupyter-notebook": "left" | |
}, | |
"workbench.editor.untitled.hint": "hidden", | |
"git.enableSmartCommit": true, | |
"explorer.confirmDelete": false, | |
"git.autofetch": true, | |
"git.confirmSync": false, | |
"explorer.confirmDragAndDrop": false, | |
"python.defaultInterpreterPath": "C:\\Users\\sword\\AppData\\Local\\Programs\\Python\\Python37\\python.exe", | |
"kite.showWelcomeNotificationOnStartup": false, | |
"powermode.presets": "flames", | |
"powermode.enabled": true, | |
"[html]": { | |
"editor.defaultFormatter": "vscode.html-language-features" | |
}, | |
"workbench.iconTheme": "material-icon-theme", | |
"editor.largeFileOptimizations": false, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"liveServer.settings.donotVerifyTags": true, | |
"editor.suggestSelection": "first", | |
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue", | |
"files.exclude": { | |
"**/.classpath": true, | |
"**/.project": true, | |
"**/.settings": true, | |
"**/.factorypath": true | |
}, | |
"workbench.sideBar.location": "right", | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[css]": { | |
"editor.defaultFormatter": "vscode.css-language-features" | |
}, | |
"javascript.updateImportsOnFileMove.enabled": "always", | |
"files.autoSave": "afterDelay", | |
"editor.minimap.enabled": false, | |
"editor.fontLigatures": true, | |
"editor.fontFamily": "\"Fira Code\"", | |
"editor.fontWeight": "normal", | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"indentRainbow.colorOnWhiteSpaceOnly": true, | |
"indentRainbow.lightIndicatorStyleLineWidth": 4, | |
"editor.tabSize": 1, | |
"indentRainbow.indicatorStyle": "light", | |
"indentRainbow.indentSetter": {}, | |
"indentRainbow.colors": [ | |
"rgba(255,255,64,0.07)", | |
"rgba(127,255,127,0.07)", | |
"rgba(255,127,255,0.07)", | |
"rgba(79,236,236,0.07)" | |
], | |
"tabnine.experimentalAutoImports": true, | |
"terminal.integrated.defaultProfile.windows": "Git Bash", | |
"terminal.integrated.profiles.windows": { | |
"PowerShell": { | |
"source": "PowerShell", | |
"icon": "terminal-powershell" | |
}, | |
"Command Prompt": { | |
"path": [ | |
"${env:windir}\\Sysnative\\cmd.exe", | |
"${env:windir}\\System32\\cmd.exe" | |
], | |
"args": [], | |
"icon": "terminal-cmd" | |
}, | |
"Git Bash": { | |
"source": "Git Bash" | |
}, | |
"bash": { | |
"path": "G:\\Programas Instalados\\Git\\bin\\bash.exe", | |
"icon": "terminal-bash" | |
} | |
}, | |
"npm.keybindingsChangedWarningShown": true, | |
"security.workspace.trust.untrustedFiles": "open", | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[javascriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[python]": { | |
"editor.formatOnType": true | |
}, | |
"material-icon-theme.activeIconPack": "nest", | |
"redhat.telemetry.enabled": true, | |
"cmake.configureOnOpen": true, | |
"[php]": { | |
"editor.defaultFormatter": "bmewburn.vscode-intelephense-client" | |
}, | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"files.associations": { | |
"*.html": "html" | |
}, | |
"material-icon-theme.files.associations": {}, | |
"window.zoomLevel": -1 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment