Skip to content

Instantly share code, notes, and snippets.

@GabeDuarteM
Created January 10, 2018 12:41
Show Gist options
  • Select an option

  • Save GabeDuarteM/5fa6274654ed0394c89d7a3824d379de to your computer and use it in GitHub Desktop.

Select an option

Save GabeDuarteM/5fa6274654ed0394c89d7a3824d379de to your computer and use it in GitHub Desktop.
Integrate Hyper with Cmder
  • create a .bat file
@echo off
REM ### Below on CMDER_ROOT, substitute 'C:\Cmder' with the path to your CMDER root (the one that contains Cmder.exe) ###
SET CMDER_ROOT=C:\Cmder 
"%CMDER_ROOT%\vendor\init.bat"
  • open hyper's config, and on shellArgs, fill with an array, with the first value being: "/K", and the second being the path to the file you created above
 shellArgs: [
   "/K",
   "C:\\Users\\gduarte\\Documents\\Cmder\\initInExternalTerminal.bat"
 ],
  • save and do a full reload on hyper (or close and open it again)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment