{"id":51302526,"url":"https://github.com/surajmaurya14/vscode-config","last_synced_at":"2026-06-30T21:30:32.144Z","repository":{"id":167798667,"uuid":"351918659","full_name":"surajmaurya14/vscode-config","owner":"surajmaurya14","description":"This contains my Coding Template","archived":false,"fork":false,"pushed_at":"2026-05-31T13:20:18.000Z","size":18,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-05-31T15:12:38.779Z","etag":null,"topics":["cpp","keybindings","settings","snippets","template"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/surajmaurya14.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-03-26T21:41:17.000Z","updated_at":"2026-05-31T13:20:22.000Z","dependencies_parsed_at":null,"dependency_job_id":"bc2c8333-6b93-411f-8816-1645596431d5","html_url":"https://github.com/surajmaurya14/vscode-config","commit_stats":null,"previous_names":["surajmaurya14/template","surajmaurya14/vscode-config"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/surajmaurya14/vscode-config","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/surajmaurya14%2Fvscode-config","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/surajmaurya14%2Fvscode-config/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/surajmaurya14%2Fvscode-config/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/surajmaurya14%2Fvscode-config/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/surajmaurya14","download_url":"https://codeload.github.com/surajmaurya14/vscode-config/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/surajmaurya14%2Fvscode-config/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34984784,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-30T02:00:05.919Z","response_time":92,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cpp","keybindings","settings","snippets","template"],"created_at":"2026-06-30T21:30:28.543Z","updated_at":"2026-06-30T21:30:32.132Z","avatar_url":"https://github.com/surajmaurya14.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vscode-config\n\nPersonal Visual Studio Code configuration — settings, keybindings, snippets, and extension list, with scripts to apply it on a fresh machine and snapshot the current state back into the repo.\n\nSnapshot: VS Code `1.122.1` on macOS (arm64), May 2026.\n\n## Layout\n\n```\n.\n├── User/                                # mirrors VS Code's User directory\n│   ├── settings.json\n│   ├── keybindings.json\n│   └── snippets/\n│       └── sumconsole.code-snippets\n├── extensions.txt                       # one extension ID per line\n├── templates/\n│   └── temp.cpp                         # competitive-programming starter\n└── scripts/\n    ├── install.sh                       # apply this config to the current machine\n    └── backup.sh                        # snapshot the current machine into this repo\n```\n\nThe `User/` tree mirrors VS Code's user directory, so installation is a straight copy:\n\n| OS      | VS Code user directory                          |\n| ------- | ----------------------------------------------- |\n| macOS   | `~/Library/Application Support/Code/User/`      |\n| Linux   | `~/.config/Code/User/`                          |\n| Windows | `%APPDATA%\\Code\\User\\`                          |\n\n## Usage\n\n### First-time install on a new machine\n\nRequires the `code` CLI on `PATH`. If it's missing, open VS Code → ⌘⇧P → **Shell Command: Install 'code' command in PATH**.\n\n```bash\ngit clone git@github.com:surajmaurya14/vscode-config.git\ncd vscode-config\n./scripts/install.sh\n```\n\n`install.sh` copies `User/*` into VS Code's user directory (after backing up any existing files to `.backup-\u003ctimestamp\u003e/` next to them) and then installs every extension from `extensions.txt`.\n\n### Snapshot the current machine back into this repo\n\n```bash\n./scripts/backup.sh\ngit diff\ngit commit -am \"Update VS Code config snapshot\"\ngit push\n```\n\n`backup.sh` overwrites `User/*` and `extensions.txt` with whatever's currently live, sorted. Always review with `git diff` before committing — your last edits in VS Code (and any auto-generated cruft like ephemeral file paths) will be in there.\n\n## Highlights\n\n- Theme: built-in **Light+** with **Material Icon Theme** (`pkief.material-icon-theme`).\n- Font: **JetBrains Mono** in the editor, **JetBrainsMono Nerd Font** in the terminal (`brew install --cask font-jetbrains-mono font-jetbrains-mono-nerd-font`); ligatures off by default — flip `editor.fontLigatures` to `true` to enable.\n- AI: **Codeium** (now the *Windsurf Plugin*) for inline completion, **Claude Code** (`anthropic.claude-code`) as the in-editor agent.\n- Sidebar on the right, minimap off, format-on-save on (off for Python — Ruff handles it).\n- Document formatter rebound from `shift+alt+f` → `shift+cmd+/`.\n- C/C++ uses Homebrew `gcc-15` on Apple Silicon (`/opt/homebrew/bin/gcc-15`); change `C_Cpp.default.compilerPath` and the `cph.language.*.Command` values to match your installed compiler (Intel Macs, Linux, or a different GCC version).\n- Python: [Ruff](https://marketplace.visualstudio.com/items?itemName=charliermarsh.ruff) for format/lint.\n- JS / TS / JSON / HTML / CSS / Markdown / YAML formatted by Prettier (or `redhat.vscode-yaml` for YAML).\n- The `cph.*` settings and the `ctrl+shift+\\`` / `ctrl+\\`` bindings target [Competitive Programming Helper](https://marketplace.visualstudio.com/items?itemName=DivyanshuAgrawal.competitive-programming-helper).\n- The `sumconsole` snippet expands into one of three scaffolds — competitive C++, basic C++, or JavaScript stdin — pick from the dropdown when the prefix triggers. `templates/temp.cpp` matches the competitive C++ flavor for quick scratch use.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsurajmaurya14%2Fvscode-config","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsurajmaurya14%2Fvscode-config","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsurajmaurya14%2Fvscode-config/lists"}