Skip to content

Instantly share code, notes, and snippets.

@cahyawibawa
Created June 14, 2024 09:17
Show Gist options
  • Save cahyawibawa/d0d031dd03b7189fa2d94ec75371b9d1 to your computer and use it in GitHub Desktop.
Save cahyawibawa/d0d031dd03b7189fa2d94ec75371b9d1 to your computer and use it in GitHub Desktop.
vscode setup
{
// general
"workbench.startupEditor": "none",
"workbench.colorTheme": "Vespertino",
"workbench.productIconTheme": "fluent-icons",
"workbench.settings.editor": "json",
"workbench.tree.enableStickyScroll": true,
"workbench.layoutControl.enabled": false,
"workbench.editor.editorActionsLocation": "hidden",
"workbench.editor.showTabs": "multiple", // file tabs
"explorer.compactFolders": false,
"editor.smoothScrolling": true,
"editor.cursorSmoothCaretAnimation": "on",
"editor.scrollbar.horizontal": "hidden",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.wordWrap": "bounded",
"editor.wrappingStrategy": "advanced",
"editor.tabSize": 2,
"editor.inlineSuggest.enabled": true,
"editor.minimap.enabled": false,
"files.insertFinalNewline": true,
"git.enableCommitSigning": true, // always sign your commits
"window.menuBarVisibility": "compact",
"window.commandCenter": false,
"window.zoomLevel": 1,
// reduce noice
"editor.hover.enabled": true,
"editor.renderLineHighlight": "none",
"editor.occurrencesHighlight": "off",
"explorer.confirmDelete": false,
"explorer.decorations.colors": true,
"explorer.decorations.badges": false,
"explorer.confirmDragAndDrop": false,
"workbench.tips.enabled": false,
"git.decorations.enabled": false,
// code
"editor.fontSize": 13,
"editor.fontFamily": "Victor Mono",
"editor.fontLigatures": true,
"editor.lineHeight": 1.7,
//terminal
"terminal.integrated.fontFamily": "Geist Mono",
"terminal.integrated.fontSize": 13,
"terminal.integrated.lineHeight": 1.3,
"terminal.integrated.defaultProfile.windows": "Git Bash",
// APC Settings
"apc.font.family": "Geist Mono",
"apc.activityBar": {
"position": "bottom",
"hideSettings": true,
"size": 24
},
"apc.statusBar": {
"position": "editor-bottom",
"height": 22,
"fontSize": 10
},
"apc.electron": {
"titleBarStyle": "hiddenInset",
"trafficLightPosition": {
"x": 8,
"y": 10
}
},
"apc.header": {
"height": 34
},
"apc.listRow": {
"height": 21
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment