From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Arnold, Travis" Subject: Re: Begginer using orgmode Date: Fri, 15 Apr 2011 22:22:33 -0400 Message-ID: References: <0F2397E5-B7B1-4BFB-A0D5-FBA091BB32EA@radford.edu> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([140.186.70.92]:36790) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QAv9g-0000tV-Ry for emacs-orgmode@gnu.org; Fri, 15 Apr 2011 22:22:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QAv9f-0007ZX-Pv for emacs-orgmode@gnu.org; Fri, 15 Apr 2011 22:22:36 -0400 Received: from mlexht01.radford.edu ([137.45.130.45]:23694 helo=smtpex.radford.edu) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QAv9f-0007ZN-LK for emacs-orgmode@gnu.org; Fri, 15 Apr 2011 22:22:35 -0400 In-Reply-To: Content-Language: en-US List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Matthew Sauer Cc: "emacs-orgmode@gnu.org" emacs 22.1, that is in Mac OSX 10.6.6 and Orgmode 7.4 Here is my .emacs fil= e, all stuff I've cribbed from either the tutorial or the Orgpdf itself, wi= th my own specification regarding what is in the agenda make up, a notes.or= g, school and an Agenda.org(to differeniate from school deadlines) -Travis Arnold ;; Org-mode settings = = =20 (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-font-lock-mode 1) (add-to-list 'load-path "/Users/Tmoney/org-7.4/lisp") (custom-set-variables ;; custom-set-variables was added by Custom. = = =20 ;; If you edit it by hand, you could mess it up, so be careful. = = =20 ;; Your init file should contain only one such instance. = = =20 ;; If there is more than one, they won't work right. = = =20 '(gud-gdb-command-name "gdb --annotate=3D1") '(org-agenda-files (quote ("~/org/Notes.org" "~/org/school.org" "~/org/Agen= da.org")))) (setq org-agenda-files (list "~/org/Notes.org" "~/org/school.org" "~/org/Agenda.org")) (setq org-todo-keywords '((sequence "TODO(t)" "STARTED(s)" "WAITING(w@/!)" = "|" "DONE(d)") (sequence "|" "CANCELED(c@/!)"))) (setq org-log-done 'time) (custom-set-faces ;; custom-set-faces was added by Custom. = = =20 ;; If you edit it by hand, you could mess it up, so be careful. = = =20 ;; Your init file should contain only one such instance. = = =20 ;; If there is more than one, they won't work right. On 15 Apr, 2011, at 5:45 PM, Matthew Sauer wrote: > do you have your section of .emacs or site file customizations that > you used to set it up with? also what version of Ogmode and emacs? >=20 > On Wed, Apr 13, 2011 at 10:31 PM, Arnold, Travis w= rote: >> Hi all after much googling and searching I came across org mode while tr= ying to find a system for my mac on which I could take notes for my school = classes. I've read the manual and taken a look at the worg tutorials but s= eem to keep messing up my .emacs config file, I seemed to have borked the s= equence, or work flow of my TODO states, I started with the ones in the exa= mple but just took out the next step and added some short cuts, t, s, d and= c, but C-t just cycles from TODO ->DONE and since I know every little abou= t coding, or lisp I am unsure of what I did wrong. I cannot also seem to f= ind a a way to just get bolded section headings with out the 1.x.x etc etc = for my notes, if anything I wonder if there is a way to get list the sectio= ns with roman numerals? >>=20 >> As the note taking system I have so far enjoyed it and would love to tin= ker and tweak it for an agenda but am fearful of messing up. Might anyone k= now of a tutorial for luddites like myself who are just starting out? I am = unsure if I even set up my .emacs file correctly: I basically copied and pa= sted the relevant bits that I thought I needed. >>=20 >> Respectfully and thank you for the time, >> Travis >>=20