* Installation on windows
@ 2008-02-03 5:15 shirish
2008-02-03 6:00 ` Manish
2008-02-03 16:12 ` Eddward DeVilla
0 siblings, 2 replies; 3+ messages in thread
From: shirish @ 2008-02-03 5:15 UTC (permalink / raw)
To: emacs-orgmode
Hi all,
Isn't there a simple executable or someway I can install orgmode
in Emacs 22.1 on windows? Why do I need to do all that as given in the
org.pdf file? And how do I do the compiling in Windows? I'm sure I'm
not the first one to ask around so if there have been any discussions
before please point me to them.
--
Regards,
Shirish Agarwal
This email is licensed under http://creativecommons.org/licenses/by-nc/3.0/
065C 6D79 A68C E7EA 52B3 8D70 950D 53FB 729A 8B17
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Installation on windows
2008-02-03 5:15 Installation on windows shirish
@ 2008-02-03 6:00 ` Manish
2008-02-03 16:12 ` Eddward DeVilla
1 sibling, 0 replies; 3+ messages in thread
From: Manish @ 2008-02-03 6:00 UTC (permalink / raw)
To: shirish; +Cc: emacs-orgmode
On Feb 3, 2008 10:45 AM, shirish <shirishag75@gmail.com> wrote:
> Hi all,
> Isn't there a simple executable or someway I can install orgmode
> in Emacs 22.1 on windows? Why do I need to do all that as given in the
> org.pdf file? And how do I do the compiling in Windows? I'm sure I'm
> not the first one to ask around so if there have been any discussions
> before please point me to them.
As a minimum, all you need to do is:
- unzip latest org in some location
- add it to the load path in .emacs
- load org from .emacs
You do not have to compile it to use it.
HTH,
--
Manish
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: Installation on windows
2008-02-03 5:15 Installation on windows shirish
2008-02-03 6:00 ` Manish
@ 2008-02-03 16:12 ` Eddward DeVilla
1 sibling, 0 replies; 3+ messages in thread
From: Eddward DeVilla @ 2008-02-03 16:12 UTC (permalink / raw)
To: shirish; +Cc: emacs-orgmode
I don't know of any install wizard for org-mode or any other emacs add
on. What I did was create a directory to put emacs plugins. I added
it to emacs's load-path by putting the following in my .emacs file.
(I don't know where that file is in windows if you don't use cygwin.)
;; set up my own package directory
(setq load-path
(append (list nil "~/.emacs_packages") ;; make this any path
you choose
load-path))
I then download the latest org-mode zip file and unpack it in a
temporary directory. I then copy the elisp files (*.el) in the top
level into my package directory. It tend to be about 4 files. I
don't copy the files out of the sub directories (like the xemacs
stuff) because I haven't needed them.
Lastly I added the follow once to the .emacs:
;; setup Org mode
(add-to-list 'auto-mode-alist '("\\.org$" . org-mode)) ; to
make emacs recognize org files
(define-key global-map "\C-cl" 'org-store-link) ; (optional) to
store links in non-org-mode buffers/files
(define-key global-map "\C-ca" 'org-agenda) ; (optional) to
open an agenda buffer from anywhere
(add-hook 'org-mode-hook 'turn-on-font-lock) ; org-mode
requires font-lock
(require 'org-install)
When you upgrade, just copy in the new .el files into you package
directory. I generally don't compile. I've only needed to compile
when I was using huge tables that I needed to manipulate.
Edd
On Feb 2, 2008 11:15 PM, shirish <shirishag75@gmail.com> wrote:
> Hi all,
> Isn't there a simple executable or someway I can install orgmode
> in Emacs 22.1 on windows? Why do I need to do all that as given in the
> org.pdf file? And how do I do the compiling in Windows? I'm sure I'm
> not the first one to ask around so if there have been any discussions
> before please point me to them.
> --
> Regards,
> Shirish Agarwal
> This email is licensed under http://creativecommons.org/licenses/by-nc/3.0/
>
> 065C 6D79 A68C E7EA 52B3 8D70 950D 53FB 729A 8B17
>
>
> _______________________________________________
> 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] 3+ messages in thread
end of thread, other threads:[~2008-02-03 16:12 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-03 5:15 Installation on windows shirish
2008-02-03 6:00 ` Manish
2008-02-03 16:12 ` Eddward DeVilla
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).