From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mikael Fornius Subject: Re: Emacs startup file Date: Tue, 13 Oct 2009 13:10:15 +0200 Message-ID: <87eip75z3c.fsf@eee.in> 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 1MxfF4-0004Wb-OO for emacs-orgmode@gnu.org; Tue, 13 Oct 2009 07:08:34 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MxfEz-0004Tt-SN for emacs-orgmode@gnu.org; Tue, 13 Oct 2009 07:08:33 -0400 Received: from [199.232.76.173] (port=44909 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MxfEz-0004To-J1 for emacs-orgmode@gnu.org; Tue, 13 Oct 2009 07:08:29 -0400 Received: from violet.abc.se ([62.80.200.155]:44895) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1MxfEz-00033g-0M for emacs-orgmode@gnu.org; Tue, 13 Oct 2009 07:08:29 -0400 In-Reply-To: (saikari keitele's message of "Tue, 13 Oct 2009 12:45:27 +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: saikari keitele Cc: emacs-orgmode@gnu.org saikari keitele 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