|
(setq auto-mode-alist
(append '(("\\.pl$" . prolog-mode))
auto-mode-alist))
(cd "/Macintosh HD/Documents")
(cond ((fboundp 'global-font-lock-mode)
(global-font-lock-mode t)
(setq font-lock-maximum-decoration t)))
(setq rmail-summary-window-size 10)
(setq mail-yank-prefix "> ")
(display-time)
(defun my-folding-bind-keys ()
"My favourite folding keys"
(define-key folding-mode-map "\C-cf"
'folding-toggle-show-hide)
(define-key folding-mode-map "\C-co"
'folding-open-buffer)
(define-key folding-mode-map "\C-cc"
'folding-whole-buffer)
)
(defun my-folding-bind-mouse ()
"My favourite folding mouse keys"
(define-key folding-mode-map [mouse-1]
'folding-mouse-context-sensitive)
)
(setq folding-default-keys-function 'my-folding-bind-keys)
(setq folding-default-mouse-keys-function 'my-folding-bind-mouse)
(load "../site-lisp/folding.el")
(folding-mode-add-find-file-hook)
(folding-add-to-marks-list 'Prolog-mode "%{{{ " "%}}}" nil)
(folding-add-to-marks-list 'prolog-mode "%{{{ " "%}}}" nil)
(load "../site-lisp/html-helper-mode.elc")
(setq auto-mode-alist (cons '("\\.html$" . html-helper-mode)
auto-mode-alist))
(setq auto-mode-alist (cons '("\\.htm$" . html-helper-mode)
auto-mode-alist))
|
|
|
All content copyright by the contributors. |
Website maintained with
Emacs ,
wsmake and
html-helper-mode |
Emacs community logo by Daniel Lundin |
Last updated on Sat Jan 22 14:49:24 2005
by Ingo Koch |
|
|
|
|