18

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?

2 Answers2

20

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%
1

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

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

Screenshot Example

Greenonline
  • 2,390
AndrewKS
  • 123