Skip to content

Instantly share code, notes, and snippets.

@alsgu3rra
Created May 4, 2024 09:32
Show Gist options
  • Save alsgu3rra/e6f4456cce6737a5b32213fb55422488 to your computer and use it in GitHub Desktop.
Save alsgu3rra/e6f4456cce6737a5b32213fb55422488 to your computer and use it in GitHub Desktop.
Vscode Settings
{
// Iniciar
"workbench.startupEditor": "none",
"workbench.editor.labelFormat": "short",
"workbench.editor.empty.hint": "hidden",
"workbench.activityBar.location": "bottom",
// Segurança
"security.promptForLocalFileProtocolHandling": false,
// Atualização
"update.mode": "manual",
// Auto Salvamento
"files.autoSave": "afterDelay",
// Transparência do Tema
"glassit.alpha": 245,
// Barra Lateral
"workbench.sideBar.location": "right",
"workbench.productIconTheme": "fluent-icons",
"workbench.iconTheme": "material-icon-theme",
"material-icon-theme.activeIconPack": "none",
// Fonte
"editor.fontFamily": "Fira Code",
"editor.fontSize": 15,
"editor.lineHeight": 1.8,
"editor.fontLigatures": true,
// Zoom
"editor.mouseWheelZoom": true,
"window.zoomLevel": 0,
// Extensão
"extensions.ignoreRecommendations": true,
"extensions.autoCheckUpdates": true,
"extensions.autoUpdate": "onlySelectedExtensions",
// Terminal
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe",
"terminal.integrated.fontSize": 15,
"terminal.integrated.fontFamily": "Fira Code",
"terminal.integrated.showExitAlert": false,
"terminal.integrated.cursorBlinking": false,
"terminal.integrated.gpuAcceleration": "on",
"terminal.integrated.defaultProfile.osx": "bash",
// Mini Mapa
"editor.minimap.autohide": true,
"editor.minimap.renderCharacters": false,
"editor.minimap.maxColumn": 80,
// Editor
"editor.rulers": [
80,
120
],
"editor.renderWhitespace": "all",
"editor.tabSize": 2,
"editor.parameterHints.enabled": false,
"editor.renderLineHighlight": "gutter",
"editor.suggestSelection": "first",
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.accessibilitySupport": "off",
"editor.semanticHighlighting.enabled": false,
"editor.hideCursorInOverviewRuler": true,
"editor.scrollbar.vertical": "hidden",
"editor.stickyScroll.enabled": false,
// Explorador de Arquivos
"explorer.confirmDelete": false,
"explorer.confirmDragAndDrop": false,
"explorer.compactFolders": false,
"explorer.fileNesting.enabled": true,
"explorer.sortOrder": "foldersNestsFiles",
// Git
"git.enableSmartCommit": true,
"git.autofetch": true,
"git.confirmSync": false,
"git.enableCommitSigning": true,
"git.openRepositoryInParentFolders": "always",
// Excluir Arquivos
"files.exclude": {
".vscode": true
},
// Janela
"window.commandCenter": true,
"window.title": "Vscode",
"window.titleBarStyle": "native",
"workbench.colorTheme": "Dracula",
"window.customTitleBarVisibility": "auto",
// APC
"apc.activityBar": {
"position": "bottom",
"hideSettings": true,
"size": 48,
"itemMargin": 8,
"itemSize": 32
},
"apc.electron": {
"titleBarStyle": "hiddenInset",
"trafficLightPosition": {
"x": 11,
"y": 10
},
"frame": false
},
"apc.header": {
"height": 36
},
"apc.listRow": {
"height": 24
},
"apc.stylesheet": {
".title-label > h2": "display: none",
".editor-actions": "display: none",
".nosidebar .inline-tabs-placeholder": "width: 75px",
".pane-header": "padding: 0 8px",
".pane-body": "padding: 8px",
".split-view-view:first-child .pane-header": "display: none !important;",
".monaco-list-row": "border-radius: 4px;",
".monaco-workbench .monaco-list:not(.element-focused):focus:before": "display: none;"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment