Cmder in Code
How to make VisualCode/Codium/Antigravity/Cursor use Cmder as the shell.
Quick post - I’m using Windows again at work, and I want/need Cmder. Yes, PowerShell is there … it’s just funny looking and slow.1 So this blast of a guide is how to fixit.
Once you have Codium and Cmder installed …
You need to create a new terminal profile, tell it to use cmd.exe and to run vendor/init.bat on startup.
- Launch Codium
CTRL+Jande selecte theTERMINALtab- next to the little
+open the dropdown and select “Configure Terminal Settings” - The settings section has … stuff … scroll around and click/select “
Edit in settings.json” - Add the following sections (adjust) the
.batpath"terminal.integrated.profiles.windows": { ... "cmder": { "path": "C:\\WINDOWS\\System32\\cmd.exe", "args": [ "/K", "C:\\find\\your\\cmder\\install\\and\\vendor\\init.bat" ] }, ... }, "terminal.integrated.defaultProfile.windows": "cmder" - re-check the terminal panel;
cmdershould be an option now, and you can use it - right?
-
… under Windows 11 - Win11 is slow. There are a lot of dumb changes with Windows 11, for example,
CTRL+C(or right click) doesn’t reliably copy text - I need to wait and use the “on hover” popup. ↩︎