I find org-mode very useful, and I'd like start org-mode as default mode when I run emacs. How can I do that?

link|improve this question

feedback

6 Answers

up vote 8 down vote accepted

I assume you want to keep the default *scratch* buffer open. Add the following to your .emacs:

(pop-to-buffer (get-buffer-create (generate-new-buffer-name "*scratch-org*")))
(insert "Scratch buffer with org-mode.\n\n")
(org-mode)
link|improve this answer
use (switch-to-buffer ...) to get fullscreen buffer instead of split window. – wires Jan 4 at 17:13
feedback

I love org-mode as well, but would not want to use it when I edit code files. I use the following configuration, which I find more convenient, maybe it will be of some use to you:

1) Adding the following lines to your .emacs file will put emacs in org-mode everytime you open a file in .org, .ref, .notes, or an encrypted version of it.

(setq auto-mode-alist '( ("\.org$" . org-mode)
("\.org.gpg$" . org-mode)
("\.ref$" . org-mode) ("\.ref.gpg$" . org-mode) ("\.notes$" . org-mode) )

2) I like to launch emacs directly in agenda mode in the morning (but still launch it in normal way in other occasions). I defined a shell alias for it: alias org emacs -f org-agenda-list

Good luck!

link|improve this answer
feedback

If you've got org-mode set up to keep track of your agenda, you can get Emacs to start by showing your weekly agenda by adding this line to your .emacs:

(org-agenda-list)
link|improve this answer
feedback

Or, you can set emacs to display your org file.

link|improve this answer
feedback

I've just got this in my list of custom-set-variables that Emacs produces automatically.

'(initial-major-mode (quote org-mode))

link|improve this answer
feedback

If you use org-mode very often like me, the best way(I think) is to start emacs with and org file loaded and shown. (+ a (org-agenda-list)). You can check my .emacs file to see how to set it up.

PS, I have a portable version with .emacs configure ready, which setup org mode, I-do, etc. It also included org sample file. I think that is a better start point for new comers.

Basically run with runemacs.bat and everything is ready.

http://nd.edu/~gsong/portable_emacs.html

Best,

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.