Skip to content

Instantly share code, notes, and snippets.

@CiceroLino
Last active June 5, 2024 03:29
Show Gist options
  • Save CiceroLino/84ba5845586484a6c3fd6c65a0b267fa to your computer and use it in GitHub Desktop.
Save CiceroLino/84ba5845586484a6c3fd6c65a0b267fa to your computer and use it in GitHub Desktop.
My personal config file to vscode
{
// Editor
"editor.fontSize": 13,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.inlineSuggest.enabled": true,
"editor.formatOnSave": true,
"editor.tabSize": 2,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
// Workbench
"workbench.startupEditor": "newUntitledFile",
"workbench.tree.indent": 15,
"typescript.updateImportsOnFileMove.enabled": "always",
"workbench.colorCustomizations": {},
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.fontFamily": "monospace",
"terminal.integrated.fontSize": 12,
"workbench.iconTheme": "developer-icon-theme",
"liveServer.settings.donotShowInfoMsg": true,
"[python]": {
"editor.formatOnType": true
},
"redhat.telemetry.enabled": true,
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
},
"javascript.updateImportsOnFileMove.enabled": "always",
"workbench.editor.empty.hint": "hidden",
"terminal.integrated.env.linux": {},
"console-ninja.featureSet": "Community",
"genieai.openai.organization": "org-i1IlhgGev4pmVpt5vc68f6hg",
"workbench.sideBar.location": "right",
"settingsSync.ignoredExtensions": ["genieai.chatgpt-vscode"],
"symbols.hidesExplorerArrows": false,
"files.autoSave": "off",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"eslint.validate": ["javascript"],
"material-icon-theme.activeIconPack": "nest",
"git.confirmSync": false,
"genieai.openai.model": "gpt-3.5-turbo-16k",
"githubPullRequests.pullBranch": "never",
"gitlens.launchpad.indicator.enabled": false,
"diffEditor.hideUnchangedRegions.enabled": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment