{"id":23900230,"url":"https://github.com/samithseu/vscode-settings","last_synced_at":"2026-02-13T07:08:52.317Z","repository":{"id":263648803,"uuid":"890283358","full_name":"samithseu/vscode-settings","owner":"samithseu","description":"Personal Visual Studio Code Settings","archived":false,"fork":false,"pushed_at":"2025-10-19T03:25:06.000Z","size":456,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-19T16:41:03.343Z","etag":null,"topics":["customize","vscode"],"latest_commit_sha":null,"homepage":"","language":null,"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/samithseu.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":"2024-11-18T10:03:53.000Z","updated_at":"2025-10-19T03:25:09.000Z","dependencies_parsed_at":"2024-11-19T17:53:27.048Z","dependency_job_id":"0438c96b-b6ce-43b8-a669-c7de65ca75ca","html_url":"https://github.com/samithseu/vscode-settings","commit_stats":null,"previous_names":["samithseu/vscode-settings"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/samithseu/vscode-settings","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samithseu%2Fvscode-settings","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samithseu%2Fvscode-settings/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samithseu%2Fvscode-settings/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samithseu%2Fvscode-settings/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/samithseu","download_url":"https://codeload.github.com/samithseu/vscode-settings/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/samithseu%2Fvscode-settings/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29398158,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-13T06:24:03.484Z","status":"ssl_error","status_checked_at":"2026-02-13T06:23:12.830Z","response_time":78,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["customize","vscode"],"created_at":"2025-01-04T19:15:09.095Z","updated_at":"2026-02-13T07:08:52.312Z","avatar_url":"https://github.com/samithseu.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# VSCODE Settings\n\n⚙️ This is my personal Visual Studio Code settings which is cleaner than the default settings, I think 😆\n\n## Fonts\n\n- English: \u003ca href=\"https://www.nerdfonts.com/font-downloads\" alt=\"Nerd Fonts URL\"\u003eNerd Fonts\u003c/a\u003e \u003ci\u003e(Choose the one you prefer!)\u003c/i\u003e\n- Khmer: \u003ca href=\"https://fonts.google.com/specimen/Kantumruy+Pro\" alt=\"Kantumruy Pro fonts\"\u003eKantumruy Pro\u003c/a\u003e \u003ci\u003e(free version of Krasar Font!)\u003c/i\u003e\n\n## Applying Settings\n\nStart applying settings based on your OS: \u003ci\u003e(Each command will backup your old settings in case you need it later.)\u003c/i\u003e\n\n### Windows\n\n```powershell\ncode --install-extension esbenp.prettier-vscode; code --install-extension Catppuccin.catppuccin-vsc; code --install-extension Catppuccin.catppuccin-vsc-icons; if (Test-Path \"$env:APPDATA\\Code\\User\\settings.json\") { mv \"$env:APPDATA\\Code\\User\\settings.json\" \"$env:APPDATA\\Code\\User\\settings.json.bak\" } else { Write-Host \"settings.json not found, skipping backup\" }; irm \"https://github.com/samithseu/vscode-settings/raw/main/settings.json\" -OutFile \"$env:APPDATA\\Code\\User\\settings.json\"; irm \"https://github.com/samithseu/vscode-settings/raw/main/keybindings.json\" -OutFile \"$env:APPDATA\\Code\\User\\keybindings.json\"\n```\n\n### Mac\n\n```bash\ncode --install-extension esbenp.prettier-vscode \u0026\u0026 code --install-extension Catppuccin.catppuccin-vsc \u0026\u0026 code --install-extension Catppuccin.catppuccin-vsc-icons \u0026\u0026 [ -f \"$HOME/Library/Application Support/Code/User/settings.json\" ] \u0026\u0026 mv \"$HOME/Library/Application Support/Code/User/settings.json\" \"$HOME/Library/Application Support/Code/User/settings.json.bak\" || echo \"settings.json not found, skipping backup\" \u0026\u0026 curl -L -o \"$HOME/Library/Application Support/Code/User/settings.json\" \"https://github.com/samithseu/vscode-settings/raw/main/settings.json\" \u0026\u0026 curl -L -o \"$HOME/Library/Application Support/Code/User/keybindings.json\" \"https://github.com/samithseu/vscode-settings/raw/main/keybindings.json\"\n```\n\n### Linux\n\n```bash\ncode --install-extension esbenp.prettier-vscode \u0026\u0026 code --install-extension Catppuccin.catppuccin-vsc \u0026\u0026 code --install-extension Catppuccin.catppuccin-vsc-icons \u0026\u0026 [ -f \"$HOME/.config/Code/User/settings.json\" ] \u0026\u0026 mv \"$HOME/.config/Code/User/settings.json\" \"$HOME/.config/Code/User/settings.json.bak\" || echo \"settings.json not found, skipping backup\" \u0026\u0026 curl -L -o \"$HOME/.config/Code/User/settings.json\" \"https://github.com/samithseu/vscode-settings/raw/main/settings.json\" \u0026\u0026 curl -L -o \"$HOME/.config/Code/User/keybindings.json\" \"https://github.com/samithseu/vscode-settings/raw/main/keybindings.json\"\n```\n\n## Result\n\n\u003cimg src=\"SAMPLE.png\" /\u003e\n\n## Other\n\n\u003cdetails\u003e\n  \u003csummary\u003ePersonal extensions only! \u003ci\u003e(optional)\u003c/i\u003e \u003c/summary\u003e\n  \n  ```bash\n  echo \"adpyke.codesnap\namiralizadeh9480.laravel-extra-intellisense\nantfu.goto-alias\nastro-build.astro-vscode\nbmewburn.vscode-intelephense-client\nbradlc.vscode-tailwindcss\ncatppuccin.catppuccin-vsc\ncatppuccin.catppuccin-vsc-icons\ncodingyu.laravel-goto-view\ncsstools.postcss\ndamms005.devdb\ndart-code.dart-code\ndart-code.flutter\ndavidanson.vscode-markdownlint\ndbaeumer.vscode-eslint\ndiemasmichiels.emulate\ndsznajder.es7-react-js-snippets\necmel.vscode-html-css\neditorconfig.editorconfig\nesbenp.prettier-vscode\nformulahendry.auto-rename-tag\ngithub.copilot\ngithub.copilot-chat\nglitchbl.laravel-create-view\ngoopware.raythis\nihunte.laravel-blade-wrapper\njock.svg\nmark-wiemer.vscode-autohotkey-plus-plus\nmehedidracula.php-namespace-resolver\nmikestead.dotenv\nms-python.debugpy\nms-python.python\nms-python.vscode-pylance\nms-python.vscode-python-envs\nms-vscode.cmake-tools\nms-vscode.cpptools\nms-vscode.cpptools-extension-pack\nms-vscode.cpptools-themes\nmyriad-dreamin.tinymist\nnaoray.laravel-goto-components\nnaumovs.color-highlight\nnuxt.mdc\nnuxtr.nuxt-vscode-extentions\nnuxtr.nuxtr-vscode\nonecentlin.laravel-blade\nonecentlin.laravel-extension-pack\nonecentlin.laravel5-snippets\npgl.laravel-jump-controller\nqwtel.sqlite-viewer\nritwickdey.liveserver\nryannaddy.laravel-artisan\nshufo.vscode-blade-formatter\nsleistner.vscode-fileutils\nsupermaven.supermaven\ntamasfe.even-better-toml\ntomoki1207.pdf\nvscjava.vscode-gradle\nvue.volar\nyoavbls.pretty-ts-errors\nquicktype.quicktype\n\" | xargs -n 1 code --install-extension\n  ```\n\u003c/details\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamithseu%2Fvscode-settings","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsamithseu%2Fvscode-settings","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsamithseu%2Fvscode-settings/lists"}