dot emacs
(add-to-list ‘load-path “~/elisp”)
(custom-set-variables
;; custom-set-variables was added by Custom — don’t edit or cut/paste it!
;; Your init file should contain only one such instance.
‘(c-tab-always-indent (quote other))
‘(tab-always-indent nil)
‘(tab-width 4)
‘(truncate-lines nil))
;; global-font-lock-mode
(global-font-lock-mode t)
;; yes = y , no = n
(fset ‘yes-or-no-p ‘y-or-n-p)
;; titulo
(setq frame-title-format (list “%b - GNU Emacs “ emacs-version))
(setq icon-title-format frame-title-format)
;; —————————————————————————
;; Soporte para acentos
;; —————————————————————————
(standard-display-european t)
(setq default-mime-charset ‘iso-8859-1)
(setq mime-editor/transfer-level 8)
;; —————————————————————————
;; Support for my keyboard (necessary for inputing accents)
;; —————————————————————————
(set-keyboard-coding-system ‘latin-1)
;; —————————————————————————
;; Don’t wrap long lines, I can’t recognize anything if this is the case
;; —————————————————————————
(set-default ‘truncate-lines t)
;; —————————————————————————
;; Nevertheless I’d like to have the possibility to see what is out of my
;; view.
;; Ok, that’s no var, but because of belonging to the nowrap, I’ve placed it
;; here (long live structure !)
;; —————————————————————————
(require ‘auto-show)
(auto-show-mode 1)
(setq-default auto-show-mode t)