I installed elscreen through melpa & it works if I open the emacs and type M-x elscreen-start
. How to start the elscreen automatically? (require 'elscreen)
in .emacs does NOT automatically start the elscreen option.
Asked
Active
Viewed 226 times
0

Tyler
- 22,234
- 1
- 54
- 94

rambalachandran
- 245
- 1
- 12
(require 'elscreen) (elscreen-start)
at the bottom of your.emacs
? Or, how about putting one of these hooks in your.emacs
along with(require 'elscreen)
?(add-hook 'after-init-hook 'elscreen-start)
or(add-hook 'emacs-startup-hook 'elscreen-start)
– lawlist Jun 25 '15 at 19:16