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 225 times
0

Tyler
- 21,719
- 1
- 52
- 92

rambalachandran
- 245
- 1
- 12
-
1**As to question number 1**: How about putting `(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
-
Welcome to Emacs.SE! Let me suggest that you break this post up into two, discrete posts that ask a single question each. – Dan Jun 25 '15 at 19:27