Created
July 19, 2024 10:46
-
-
Save vivekascoder/3a81c8a959bd2c1391b695231f7da15f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"editor.minimap.enabled": false, | |
"workbench.startupEditor": "none", | |
"vim.easymotion": true, | |
"vim.incsearch": true, | |
"vim.useSystemClipboard": true, | |
"vim.useCtrlKeys": true, | |
"vim.hlsearch": true, | |
"vim.insertModeKeyBindings": [ | |
{ | |
"before": ["j", "j"], | |
"after": ["<Esc>"] | |
} | |
], | |
"vim.normalModeKeyBindings": [ | |
{ | |
"before": ["<C-n>"], | |
"commands": [":noh"], | |
"after": ["\\", "\\"] | |
} | |
], | |
"editor.formatOnSave": true, | |
"git.enableSmartCommit": true, | |
"git.confirmSync": false, | |
"editor.inlineSuggest.enabled": true, | |
"github.copilot.enable": { | |
"*": true, | |
"plaintext": false, | |
"markdown": true, | |
"scminput": false, | |
"yaml": false, | |
"rust": true, | |
"proto3": false, | |
"toml": true, | |
"wat": false | |
}, | |
"editor.rulers": [80], | |
"[json]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"editor.fontFamily": "\"Dank Mono\", \"Iosevka\", \"Source Code Pro\", \"IntelOne Mono\", \"Rec Mono Casual\", \"Zed Mono\", \"MonoLisa\", \"Iosevka SS16\", Monaco, Menlo, 'Courier New', monospace", | |
"editor.fontWeight": "500", | |
"terminal.integrated.gpuAcceleration": "off", | |
"[typescript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"[html]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
// "background.windowBackgrounds": [ | |
// "/Users/statemachine/Pictures/Wallpapers/wallhaven-rrdzjj.jpg" | |
// ], | |
// "background.backgroundOpacity": [0.1, 0.3, 0.9, 0.9], | |
// "background.editorBackgrounds": [ | |
// "/Users/statemachine/Pictures/Wallpapers/wallhaven-rrdzjj.jpg" | |
// ], | |
// "background.backgroundSize": ["Cover", "Cover", "Cover", "Cover"], | |
// "background.backgroundAlignment": [ | |
// "Center Center", | |
// "Center Center", | |
// "Center Center", | |
// "Center Center" | |
// ], | |
// "background.backgroundBlur": ["0", "0", "0", "0"], | |
// "background.backgroundChangeTime": [0, 100, 0, 0], | |
// "background.backgroundRepeat": [ | |
// "No Repeat", | |
// "Repeat", | |
// "No Repeat", | |
// "No Repeat" | |
// ] | |
// "background.style": { | |
// "opacity": 0.9, | |
// }, | |
// "background.customImages": [ | |
// "/Users/statemachine/Pictures/Wallpapers/wallhaven-7p39gy.png" | |
// ], | |
"background.fullscreen": { | |
"image": "/Users/statemachine/Pictures/Wallpapers/wallhaven-rrdzjj.jpg", // url of your image | |
// "image": ["https://pathtoimage.png"], // An array may be useful when set interval for carousel | |
"opacity": 0.91, // 0.85 ~ 0.95 recommended | |
"size": "cover", // also css, `cover` to self-adaption (recommended),or `contain`、`200px 200px` | |
"position": "center", // alias to `background-position`, default `center` | |
"interval": 0 // seconds of interval for carousel, default `0` to disabled. | |
}, | |
"workbench.iconTheme": "vscode-icons", | |
"vsicons.dontShowNewVersionMessage": true, | |
"terminal.integrated.fontSize": 14, | |
"editor.inlayHints.enabled": "offUnlessPressed", | |
"zig.zls.path": "/Users/statemachine/Library/Application Support/Code/User/globalStorage/ziglang.vscode-zig/zls_install/zls", | |
"git.openRepositoryInParentFolders": "never", | |
"workbench.colorTheme": "GitHub Light", | |
"apc.electron": { | |
"frame": false, | |
"titleBarStyle": "hidden" | |
}, | |
"apc.font.family": "Dank Mono", | |
"window.titleBarStyle": "native", | |
"editor.fontLigatures": true, | |
"editor.stickyScroll.enabled": true, | |
"typescript.inlayHints.variableTypes.enabled": true, | |
"javascript.inlayHints.variableTypes.enabled": true, | |
"workbench.activityBar.location": "hidden", | |
"window.zoomLevel": 1, | |
"zig.initialSetupDone": false, | |
"window.commandCenter": false, | |
"window.customTitleBarVisibility": "never", | |
"explorer.confirmDelete": false, | |
"editor.fontSize": 14, | |
"security.workspace.trust.untrustedFiles": "newWindow", | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
// "workbench.editor.showTabs": "single", | |
"[typescriptreact]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"breadcrumbs.enabled": false, | |
"explorer.confirmDragAndDrop": false, | |
"update.mode": "manual", | |
"solidity.telemetry": false, | |
"prisma.showPrismaDataPlatformNotification": false, | |
"github.copilot.editor.enableAutoCompletions": true, | |
"[jsonc]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
}, | |
"solidity.formatter": "forge", | |
"explorer.compactFolders": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment