Skip to content

Instantly share code, notes, and snippets.

@Stormix
Created April 27, 2024 12:07
Show Gist options
  • Save Stormix/0e67cc858a029b147b022d7996090265 to your computer and use it in GitHub Desktop.
Save Stormix/0e67cc858a029b147b022d7996090265 to your computer and use it in GitHub Desktop.
{
"workbench.colorTheme": "Vesper",
// Fonts
"terminal.integrated.fontFamily": "FiraCode Nerd Font",
"editor.fontFamily": "Dank Mono",
"editor.inlayHints.fontFamily": "Dank Mono",
"editor.codeLensFontFamily": "Dank Mono",
"scm.inputFontFamily": "Dank Mono",
"chat.editor.fontFamily": "Dank Mono",
"debug.console.fontFamily": "Dank Mono",
"notebook.output.fontFamily": "Dank Mono",
"markdown.preview.fontFamily": "Dank Mono",
"editor.fontLigatures": "'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08', 'calt', 'dlig'",
// ui
"editor.minimap.enabled": false,
"window.commandCenter": false,
"editor.scrollbar.vertical": "auto",
"window.titleBarStyle": "custom",
"editor.scrollbar.horizontal": "auto",
// APC
"apc.activityBar": {
"position": "bottom",
"hideSettings": true,
"size": 28
},
"apc.electron": {
"titleBarStyle": "hiddenInset",
"trafficLightPosition": {
"x": 12,
"y": 10
}
},
"apc.font.family": "Dank Mono",
"apc.monospace.font.family": "Dank Mono",
"apc.statusBar": {
"position": "editor-bottom",
"height": 28,
"fontSize": 12
},
// Misc
"workbench.startupEditor": "none",
"explorer.compactFolders": false,
"editor.tabSize": 2,
"editor.linkedEditing": true,
"breadcrumbs.filePath": "on",
"files.trimTrailingWhitespace": true,
"[markdown]": {
"files.trimTrailingWhitespace": false
},
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"github.copilot.enable": {
"*": true,
"plaintext": true,
"markdown": false,
"scminput": false,
"python": true
},
"workbench.iconTheme": "moxer-icons",
"git.enableSmartCommit": true,
"git.autofetch": true,
"git.confirmSync": false,
"git.openRepositoryInParentFolders": "always",
"explorer.confirmDragAndDrop": false,
"envSwitcher.overwriteAlert": false,
"editor.fontSize": 18,
"typescript.updateImportsOnFileMove.enabled": "always",
"javascript.updateImportsOnFileMove.enabled": "always",
"terminal.integrated.enableMultiLinePasteWarning": false,
"files.eol": "\n",
"redhat.telemetry.enabled": false,
"git.allowNoVerifyCommit": true,
"git.confirmNoVerifyCommit": false,
"files.associations": {
".env*": "dotenv"
},
"editor.tokenColorCustomizations": {
"[*Light*]": {
"textMateRules": [
{
"scope": "ref.matchtext",
"settings": {
"foreground": "#000"
}
}
]
},
"[*Dark*]": {
"textMateRules": [
{
"scope": "ref.matchtext",
"settings": {
"foreground": "#fff"
}
}
]
},
"textMateRules": [
{
"scope": "keyword.other.dotenv",
"settings": {
"foreground": "#FF000000"
}
}
]
},
"dotenv.enableAutocloaking": true,
"C_Cpp.intelliSenseEngine": "disabled",
"[typescriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"[typescript]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"terminal.integrated.fontSize": 16,
"workbench.layoutControl.enabled": false,
"files.autoSave": "afterDelay",
"window.density.editorTabHeight": "compact",
"window.zoomLevel": 2
}
@Stormix
Copy link
Author

Stormix commented Apr 27, 2024

Make sure to install APC extension and the relevant fonts: Fira Code, Dank Mono..etc

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment