.emacs
author Oleksander Gavenko <gavenko_a@3g.ua>
Fri, 06 Jun 2008 17:51:38 +0300
changeset 37 b210b509819b
parent 30 762d326dca54
child 41 38dda673f17f
permissions -rw-r--r--
Added ability do custom settings, that override `.emacs-my'.

;; -*- mode: lisp; coding: cp1251 -*-

;; Copyright (C) 2008 by Gavenko Oleksandr
;; Copyright (C) 2008 by Гавенко Алескандр

(load "~/.emacs-my")
(if (file-exists-p "~/.emacs-my-custom")
    (load "~/.emacs-my-custom"))

(custom-set-variables
  ;; custom-set-variables was added by Custom.
  ;; If you edit it by hand, you could mess it up, so be careful.
  ;; Your init file should contain only one such instance.
  ;; If there is more than one, they won't work right.
 '(Info-enable-edit t)
 '(browse-url-browser-function (quote browse-url-default-windows-browser))
 '(ecb-tip-of-the-day nil)
 '(eshell-command-interpreter-max-length 1024)
 '(pc-select-meta-moves-sexps t)
 '(read-quoted-char-radix 16)
 '(sentence-end-double-space nil)
 '(sql-password "")
 '(view-read-only t)
 '(w32-allow-system-shell t))
(custom-set-faces
  ;; custom-set-faces was added by Custom.
  ;; If you edit it by hand, you could mess it up, so be careful.
  ;; Your init file should contain only one such instance.
  ;; If there is more than one, they won't work right.
 '(hl-line ((t (:inherit highlight :background "light yellow")))))