File: dot.emacs

package info (click to toggle)
mew-beta 7.0.50~6.8%2B0.20221129-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 6,408 kB
  • sloc: lisp: 37,375; ansic: 3,608; haskell: 569; sh: 443; makefile: 415; ruby: 310; perl: 61
file content (36 lines) | stat: -rw-r--r-- 1,036 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; A sample file of .emacs or a site configuration file
;;;
;
; This is just a sample. You should customize as you like...
;

(autoload 'mew "mew" nil t)
(autoload 'mew-send "mew" nil t)

;; Optional setup (Read Mail menu):
;(setq read-mail-command 'mew)

;; Optional setup (e.g. C-xm for sending a message):
;(autoload 'mew-user-agent-compose "mew" nil t)
;(if (boundp 'mail-user-agent)
;    (setq mail-user-agent 'mew-user-agent))
;(if (fboundp 'define-mail-user-agent)
;    (define-mail-user-agent
;      'mew-user-agent
;      'mew-user-agent-compose
;      'mew-draft-send-message
;      'mew-draft-kill
;      'mew-send-hook))

;; If you are using Emacs with the --unibyte option or the
;; EMACS_UNIBYTE environment variable for Latin-1, put the following
;; into your "~/.emacs".
;(set-language-environment "Latin-1")
;(set-input-method "latin-1-prefix") ;; or "latin-1-postfix"
;; You MUST remove (standard-display-european 1) from your .emacs.

;;;
;;; End
;;;