17

I'm using cmder (https://github.com/cmderdev/cmder), and would like to be able to:

  • Configure entries to be automatically added the PATH when I start cmder
  • Configure environment variables that will be automatically set when I start cmder

How do I do this?

Jay Sullivan
  • 759
  • 4
  • 9
  • 18
  • Is there a tabbed console app? Preferably with ctrl-tab or some other shortcut for switching between them? Windows really needs something like virtual tty's. I've seen some that have transparent windows and stuff, but that's a fluff feature that doesn't help. Edit: ok, I was thinking of conemu, which cmder appears to use. – Justin Goldberg Oct 27 '15 at 13:26

2 Answers2

19

There is a user startup script in cmder\config\user-profile.cmd. To add items to your PATH, you can do the following;

@set PATH=<path_of_your_item>;%PATH%
Jay Sullivan
  • 759
  • 4
  • 9
  • 18
0

Alternatively, you can set them on startup under Settings -> Startup -> Environment and add

set PATH=<path_of_your_item>;%PATH%`.

Screenshot Example

Greenonline
  • 2,235
  • 11
  • 24
  • 30
AndrewKS
  • 113
  • 1
  • 6