Skip to content

Instantly share code, notes, and snippets.

@mcnaveen
Last active June 11, 2024 05:48
Show Gist options
  • Save mcnaveen/2214d307f5de7ad380f1c62818e6e2f4 to your computer and use it in GitHub Desktop.
Save mcnaveen/2214d307f5de7ad380f1c62818e6e2f4 to your computer and use it in GitHub Desktop.
{
/* Common */
"vsicons.dontShowNewVersionMessage": true,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
/* Explorer */
"explorer.compactFolders": true,
"explorer.confirmDragAndDrop": false,
/* Window */
"window.newWindowDimensions": "inherit",
"window.titleBarStyle": "custom",
"window.dialogStyle": "custom",
"window.commandCenter": false,
/* Workbench */
"workbench.iconTheme": "vscode-icons",
"workbench.startupEditor": "none",
"workbench.layoutControl.enabled": false,
"workbench.colorTheme": "Serendipity Midnight Minimal",
"workbench.settings.editor": "json",
/* Breadcrumbs */
"breadcrumbs.filePath": "last",
"breadcrumbs.symbolPath": "on",
"breadcrumbs.enabled": true,
/* Editor */
"editor.fontFamily": "Geist Mono",
"editor.fontLigatures": "'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08', 'calt', 'dlig'",
"editor.lineHeight": 0,
"editor.fontSize": 14,
"editor.fontWeight": "normal",
"editor.guides.bracketPairs": "active",
"editor.inlineSuggest.enabled": true,
"editor.suggestSelection": "first",
"editor.largeFileOptimizations": false,
"editor.minimap.enabled": false,
"editor.scrollbar.vertical": "hidden",
"editor.cursorStyle": "line-thin",
"editor.colorDecorators": false,
"editor.hideCursorInOverviewRuler": true,
"editor.scrollbar.horizontalScrollbarSize": 6,
"editor.scrollbar.verticalScrollbarSize": 10,
"editor.stickyScroll.enabled": false,
"editor.codeLensFontFamily": "OperatorMono-Book",
"editor.cursorBlinking": "smooth",
"editor.cursorSmoothCaretAnimation": "on",
"editor.wordWrap": "bounded",
"editor.tabSize": 2,
/* Co-Pilot */
"github.copilot.enable": {
"*": true,
"plaintext": true,
"markdown": true,
"scminput": false,
"http": true,
"javascript": true,
"yaml": true
},
/* Languages & Tools */
"javascript.updateImportsOnFileMove.enabled": "always",
"typescript.updateImportsOnFileMove.enabled": "always",
"tailwindCSS.classAttributes": ["class", "className", "ngClass", "style"],
"nxConsole.showNodeVersionOnStartup": false,
/* Live Server */
"liveServer.settings.NoBrowser": true,
/* Terminal */
"terminal.integrated.fontFamily": "Hack Nerd Font",
"terminal.integrated.fontSize": 14,
"terminal.external.osxExec": "iterm.app",
/* APC */
"apc.electron": {
"titleBarStyle": "hiddenInset",
"trafficLightPosition": {
"x": 8,
"y": 10
}
},
"apc.listRow": {
"height": 21,
"fontSize": 13
},
"apc.stylesheet": {
".editor-actions": "display: none !important",
".monaco-workbench .part.sidebar .title-actions .actions-container": "justify-content: space-evenly !important",
".nosidebar .inline-tabs-placeholder": "width: 75px", // Align tabs to not overlap window controls when primary bar is hidden
},
"apc.statusBar": {
"height": 24,
"position": "editor-bottom"
},
"apc.activityBar": {
"position": "bottom",
"hideSettings": true,
"size": 26
},
"apc.font.family": "Geist Mono",
"apc.monospace.font.family": "Geist Mono",
"apc.header": {
"height": 34,
"fontSize": 14
},
// 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
},
"terminal.integrated.env.osx": {
"FIG_NEW_SESSION": "1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment