From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tassilo Horn Subject: Re: Emacs startup file Date: Tue, 13 Oct 2009 13:07:42 +0200 Message-ID: <87ws2z362p.fsf@thinkpad.tsdh.de> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MxfEo-0004Nj-MU for emacs-orgmode@gnu.org; Tue, 13 Oct 2009 07:08:18 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MxfEk-0004LM-EM for emacs-orgmode@gnu.org; Tue, 13 Oct 2009 07:08:18 -0400 Received: from [199.232.76.173] (port=39542 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MxfEj-0004LH-Pu for emacs-orgmode@gnu.org; Tue, 13 Oct 2009 07:08:13 -0400 Received: from lo.gmane.org ([80.91.229.12]:57234) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MxfEj-0002zh-9l for emacs-orgmode@gnu.org; Tue, 13 Oct 2009 07:08:13 -0400 Received: from list by lo.gmane.org with local (Exim 4.50) id 1MxfEe-00023r-Os for emacs-orgmode@gnu.org; Tue, 13 Oct 2009 13:08:08 +0200 Received: from 141.26.95.119 ([141.26.95.119]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 13 Oct 2009 13:08:08 +0200 Received: from tassilo by 141.26.95.119 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 13 Oct 2009 13:08:08 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org saikari keitele 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