.emacs
author "Oleksandr Gavenko <gavenkoa@gmail.com>"
Sat, 25 Oct 2008 19:58:35 -0400
changeset 95 def084f6e280
parent 93 99f967be941a
child 96 1c9a7ccc584a
permissions -rw-r--r--
View section move to silent runing

;; -*- mode: lisp; coding: cp1251 -*-
;;
;; Copyright (C) 2008 by Oleksandr Gavenko <gavenkoa@gmail.com>
;;
;; ~/.emacs firstly load ~/.emacs-my-pre, then ~/.emacs-my, then ~/.emacs-my-post.

(defvar user-el-dir (expand-file-name "~/.el")
  "Dir where stored extensions.")

(defvar dot-emacs-my-pre (expand-file-name "~/.emacs-my-pre")
  "Path to file with pre-loaded custom settings.")
(defvar dot-emacs-my-post (expand-file-name "~/.emacs-my-post")
  "Path to file with post-loaded custom settings.")

;; pre-load custom settings
(if (file-exists-p dot-emacs-my-pre)
    (load dot-emacs-my-pre))

;; load main customization
(load "~/.emacs-my")

;; post-load custom settings
(if (file-exists-p dot-emacs-my-post)
    (load dot-emacs-my-post))

(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")))))