emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Emacs startup file
@ 2009-10-13 10:45 saikari keitele
  2009-10-13 11:07 ` Tassilo Horn
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: saikari keitele @ 2009-10-13 10:45 UTC (permalink / raw)
  To: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 165 bytes --]

Hi,
I'm new to orgmode and quite new to Emacs.
Could you please tell me the exact lines I have to add to the emacs startup
file(.emacs.el) to enable orgmode?
Thanks

[-- Attachment #1.2: Type: text/html, Size: 185 bytes --]

[-- Attachment #2: Type: text/plain, Size: 204 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Emacs startup file
  2009-10-13 10:45 Emacs startup file saikari keitele
@ 2009-10-13 11:07 ` Tassilo Horn
  2009-10-13 11:10 ` Mikael Fornius
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Tassilo Horn @ 2009-10-13 11:07 UTC (permalink / raw)
  To: emacs-orgmode

saikari keitele <saikari78@gmail.com> writes:

Hi Saikari,

> I'm new to orgmode and quite new to Emacs.

Welcome!

> Could you please tell me the exact lines I have to add to the emacs
> startup file (.emacs.el) to enable orgmode?

If you use Emacs 23.1, then you don't need to do anything.  Simply open
a file with .org extension will enable org-mode.

That said, you might want to specify which org files are used to
generate the agenda view.  Let's say all your org files are in a
directory ~/org/, then add this code to you .emacs.

  (setq org-agenda-files '("~/org"))

You might also want to set up custom global keys to fire up the agenda
or to store a link to the current document.  Org's nice manual explains
how to do that:

,----[ (info "(org)Activation") ]
|      (global-set-key "\C-cl" 'org-store-link)
|      (global-set-key "\C-ca" 'org-agenda)
`----

Bye,
Tassilo

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Emacs startup file
  2009-10-13 10:45 Emacs startup file saikari keitele
  2009-10-13 11:07 ` Tassilo Horn
@ 2009-10-13 11:10 ` Mikael Fornius
  2009-10-13 11:20 ` Bernt Hansen
  2009-10-13 12:04 ` Memnon Anon
  3 siblings, 0 replies; 6+ messages in thread
From: Mikael Fornius @ 2009-10-13 11:10 UTC (permalink / raw)
  To: saikari keitele; +Cc: emacs-orgmode

saikari keitele <saikari78@gmail.com> writes:

> Could you please tell me the exact lines I have to add to the emacs
> startup file(.emacs.el) to enable orgmode?


;; The following lines are always needed.  Choose your own keys.
(add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode))
(global-set-key "\C-cl" 'org-store-link)
(global-set-key "\C-ca" 'org-agenda)
(global-set-key "\C-cb" 'org-iswitchb)
(global-font-lock-mode 1)                     ; for all buffers
(add-hook 'org-mode-hook 'turn-on-font-lock)  ; Org buffers only



See Emacs Info documentation browser:

(info "(org) Activation")

for more information.


-- 
Mikael Fornius

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Emacs startup file
  2009-10-13 10:45 Emacs startup file saikari keitele
  2009-10-13 11:07 ` Tassilo Horn
  2009-10-13 11:10 ` Mikael Fornius
@ 2009-10-13 11:20 ` Bernt Hansen
  2009-10-13 12:04 ` Memnon Anon
  3 siblings, 0 replies; 6+ messages in thread
From: Bernt Hansen @ 2009-10-13 11:20 UTC (permalink / raw)
  To: saikari keitele; +Cc: emacs-orgmode

saikari keitele <saikari78@gmail.com> writes:

> Hi,
> I'm new to orgmode and quite new to Emacs.
> Could you please tell me the exact lines I have to add to the emacs startup file(.emacs.el) to
> enable orgmode?
> Thanks

http://doc.norang.ca/org-mode.html#Setup

-Bernt

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Emacs startup file
  2009-10-13 10:45 Emacs startup file saikari keitele
                   ` (2 preceding siblings ...)
  2009-10-13 11:20 ` Bernt Hansen
@ 2009-10-13 12:04 ` Memnon Anon
  2009-10-14  9:10   ` saikari keitele
  3 siblings, 1 reply; 6+ messages in thread
From: Memnon Anon @ 2009-10-13 12:04 UTC (permalink / raw)
  To: emacs-orgmode

saikari keitele <saikari78@gmail.com> writes:

> I'm new to orgmode and quite new to Emacs.  Could you please tell me
> the exact lines I have to add to the emacs startup file(.emacs.el) to
> enable orgmode?

Welcome ;)

If you are new to emacs, really learn, how to use the integrated
documenatation. Its great and always available!

Press a) 'Control+h' 'i' . This gives you the info system.
      b) 'h' . Gives you a tutorial, how to use it.
               It takes some time to get used to it, but its really
               worth it.
      c) Find the org documentation in the info system. The node
         Introduction should help you getting started. 

The org documentation is very well written and quite extensive.

hth, and have fun :)!

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Re: Emacs startup file
  2009-10-13 12:04 ` Memnon Anon
@ 2009-10-14  9:10   ` saikari keitele
  0 siblings, 0 replies; 6+ messages in thread
From: saikari keitele @ 2009-10-14  9:10 UTC (permalink / raw)
  To: Memnon Anon; +Cc: emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 1128 bytes --]

Many thanks to all. Huge help.

On Tue, Oct 13, 2009 at 1:04 PM, Memnon Anon <
gegendosenfleisch@googlemail.com> wrote:

> saikari keitele <saikari78@gmail.com> writes:
>
>  > I'm new to orgmode and quite new to Emacs.  Could you please tell me
> > the exact lines I have to add to the emacs startup file(.emacs.el) to
> > enable orgmode?
>
> Welcome ;)
>
> If you are new to emacs, really learn, how to use the integrated
> documenatation. Its great and always available!
>
> Press a) 'Control+h' 'i' . This gives you the info system.
>      b) 'h' . Gives you a tutorial, how to use it.
>               It takes some time to get used to it, but its really
>               worth it.
>      c) Find the org documentation in the info system. The node
>         Introduction should help you getting started.
>
> The org documentation is very well written and quite extensive.
>
> hth, and have fun :)!
>
>
>
>
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Remember: use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>

[-- Attachment #1.2: Type: text/html, Size: 1772 bytes --]

[-- Attachment #2: Type: text/plain, Size: 204 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2009-10-14  9:10 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-10-13 10:45 Emacs startup file saikari keitele
2009-10-13 11:07 ` Tassilo Horn
2009-10-13 11:10 ` Mikael Fornius
2009-10-13 11:20 ` Bernt Hansen
2009-10-13 12:04 ` Memnon Anon
2009-10-14  9:10   ` saikari keitele

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).