Skip to content

Instantly share code, notes, and snippets.

@jsmlls
Created January 6, 2024 20:28
Show Gist options
  • Save jsmlls/baa528ccbb7b03440fa23bd81d7edd43 to your computer and use it in GitHub Desktop.
Save jsmlls/baa528ccbb7b03440fa23bd81d7edd43 to your computer and use it in GitHub Desktop.
2024 vscode environment
// 2024
{
"workbench.startupEditor": "none",
"workbench.iconTheme": "moxer-icons",
"workbench.colorTheme": "Vesper",
// Theme often switched...Try Kanagawa Black or Aura Theme Dark
"workbench.settings.editor": "json",
"breadcrumbs.enabled": false,
"explorer.compactFolders": false,
"editor.wordWrap": "on",
"editor.tabSize": 2,
"editor.inlineSuggest.enabled": true,
"editor.minimap.enabled": false,
"editor.fontFamily": "Geist Mono",
"terminal.integrated.fontFamily": "Geist Mono",
"terminal.integrated.fontSize": 12,
"editor.fontSize": 14,
"html.autoClosingTags": false,
"liveServer.settings.donotShowInfoMsg": true,
"editor.fontWeight": "200",
"editor.cursorWidth": 2,
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"git.autofetch": true,
"workbench.settings.applyToAllProfiles": [],
"editor.fontVariations": true,
"editor.cursorSmoothCaretAnimation": "on",
"editor.smoothScrolling": true,
"editor.cursorBlinking": "phase",
"explorer.confirmDelete": false,
"apc.font.family": "Geist Mono",
"apc.activityBar": {
"position": "bottom",
"hideSettings": true,
"size": 24
},
"apc.statusBar": {
"position": "editor-bottom",
"height": 22,
"fontSize": 12
},
"apc.electron": {
"titleBarStyle": "hiddenInset",
"trafficLightPosition": {
"x": 8,
"y": 10
}
},
"apc.header": {
"height": 34,
"fontSize": 14
},
"apc.listRow": {
"height": 21,
"fontSize": 13
},
"window.commandCenter": false,
"workbench.layoutControl.enabled": false,
"extensions.experimental.affinity": {
"asvetliakov.vscode-neovim": 1
},
"nxConsole.showNodeVersionOnStartup": false,
"typescript.updateImportsOnFileMove.enabled": "never",
"explorer.confirmDragAndDrop": false,
"javascript.updateImportsOnFileMove.enabled": "never",
// used by the toggle excluded files extension
"files.exclude": {
"**/.open-next": true,
"**/.sst": true,
"**/.nx": true,
"**/.turbo": true,
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/node_modules": true,
"**/.husky": true,
"**/.github": true,
"**/.gitignore": true,
"**/dist": true,
"**/.next": true,
"**/*.tsbuildinfo": true,
"**/.astro": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment