On Aug 22, 2008, at 5:32 PM, Parker, Matthew wrote:

Is there a way to set “Hyperlinks > literal links” on by default?
 
I found the elisp that works w/in an org buffer, but this fails if I put it in .emacs.
 
; turn on literal links
(progn
  (org-remove-from-invisibility-spec '(org-link))
  (org-restart-font-lock)
)


You can also use

(setq org-descriptive-links nil)

- Carsten