.emacs-my
author Oleksandr Gavenko <gavenkoa@gmail.com>
Sat, 26 Mar 2011 18:52:58 +0200
changeset 621 0fdb4051446c
parent 620 bf8dd15f71a3
child 623 0945c23d34b8
permissions -rwxr-xr-x
Fix 'eval-after-load' usage.

;; -*- mode: emacs-lisp; mode: outline-minor; coding: utf-8; fill-column: 78 -*-
;;
;; Written by Oleksandr Gavenko <gavenkoa@gmail.com>, 2008-2010.
;;
;; This file formed from parts and ideas from many sites/docs and
;; placed in public domain.
;;
;; Config file for GNU Emacs.
;;
;; For load order see README.

;;; ----------------------------------------------------------------
(message "recentf")

(require 'recentf)
;; Prevent TRAMP to login on remote host when loading.
;; Its take time and ask passwords!
(setq recentf-auto-cleanup 'never)
(recentf-mode t)
(setq recentf-max-saved-items 1000)
(global-set-key (kbd "\e\eq")  'recentf-open-files)

;;; ----------------------------------------------------------------
(message "debugging")

;; Shut off message buffer by setting nil.
(setq message-log-max 512)

;; Set the debug option to enable a backtrace when a problem occurs.
(setq debug-on-error nil)               ; t/nil
;; (setq debug-on-error t)

;; Get trace when press C-g.
(setq debug-on-quit nil)                ; t/nil

;; Prevent Emacs from loading 'default.el', which loaded after '.emacs'.
;; Also '-q' prevent loading your init file.
(setq inhibit-default-init nil)         ; t/nil

;;; ----------------------------------------------------------------
(message "user info")

(setq user-full-name "Oleksandr Gavenko")
(setq user-mail-address "gavenkoa@gmail.com")
(setq user-nick "gavenkoa")
(setenv "ORGANIZATION" (concat user-full-name " <" user-mail-address  ">"))

;;; ----------------------------------------------------------------
(message "mode groups")

(defmacro my-defun-rename-symb-tree (name doc func)
  "Travel by TREE and applies FUNC to each symbol."
  `(defun ,name (tree)
     ,doc
     (cond
      ((symbolp tree)
       (,func tree)
       )
      ((listp tree)
       (mapcar ',name tree)
       )
      (t (error "Only tree of symbols allowed."))
      )))

(my-defun-rename-symb-tree
 my-feature2mode
 "Convert TREE of features to TREE of modes for these features. Single symbol allowed."
 (lambda (symb) (intern (concat (symbol-name symb) "-mode"))))

(my-defun-rename-symb-tree
 my-mode2hook
 "Convert TREE of modes to TREE of hooks for these modes. Single symbol allowed."
 (lambda (symb) (intern (concat (symbol-name symb) "-hook")))
 )

(my-defun-rename-symb-tree
 my-mode2modemap
 "Convert TREE of modes to TREE of keymaps for these modes. Single symbol allowed."
 (lambda (symb) (intern (concat (symbol-name symb) "-map")))
 )

(defvar my-devel-mode-list
  '(
    outline-mode
    sh-mode script-mode
    c-mode c++-mode java-mode js-mode
    python-mode
    lisp-mode
    emacs-lisp-mode
    makefile-mode makefile-gmake-mode
    nsis-mode
    )
  "List of development modes.")

(defvar my-devel-mode-hook-list
   (my-mode2hook my-devel-mode-list)
  "List of development mode hooks.")

(defvar my-scroll-margin-mode-list
  '(
    vc-dir-mode
    recentf-dialog-mode
    org-agenda-grid-mode           ; XXX for this item not worked!
    log-view-mode
    diff-mode
    dired-mode
    compilation-mode
    )
  "List of modes for enabling scroll margin.")

(defvar my-scroll-margin-mode-hook-list
  (my-mode2hook my-scroll-margin-mode-list)
  "List of mode hooks for enabling scroll margin.")

(defvar my-text-mode-list
  '(outline-mode text-mode)
  "List of text modes.")

(defvar my-text-mode-hook-list
  (my-mode2hook my-text-mode-list)
  "List of text mode hooks.")

;;; ----------------------------------------------------------------
(message "appearance")

;; To maximize frame on full screen, not work with Windows Emacs 21.4.
;; And maked different height with Emacs 22.3 and 23.1.
;; (setq initial-frame-alist '((fullscreen . fullboth)))

(setq display-buffer-reuse-frames t)

;; Next code work with Emacs 21.4, 22.3, 23.1.
(when window-system
  (let (
        (px (display-pixel-width))
        (py (display-pixel-height))
        (fx (frame-char-width))
        (fy (frame-char-height))
        tx ty
        )
    ;; Next formulas discovered empiric on Windows host with default font.
    (setq tx (- (/ px fx) 7))
    (setq ty (- (/ py fy) 4))
    (setq initial-frame-alist '((top . 0) (left . 0)))
    (add-to-list 'initial-frame-alist (cons 'width tx))
    (add-to-list 'initial-frame-alist (cons 'height ty))
    ) )

(menu-bar-mode -1)
(when window-system
  (mouse-avoidance-mode 'animate)
  (scroll-bar-mode 1)
  (tool-bar-mode -1)
  (defun my-popup-menu ()
    (interactive)
    (mouse-popup-menubar
     (list (list (/ (display-pixel-width) 2) 10) (get-buffer-window (buffer-name)))
     nil)
    )
  (global-set-key [f10] 'my-popup-menu)
  (global-set-key [apps] 'my-popup-menu)
  (global-set-key [menu] 'my-popup-menu)
  (when (>= emacs-major-version 22) (tooltip-mode -1))
  )

;; Prefer horizontal windows splitting.
(when (>= emacs-major-version 23)
  (setq split-height-threshold nil)
  (setq split-width-threshold nil)
  )

(setq frame-title-format "Emacs - %b")

(setq default-header-line-format nil)
;; (setq default-mode-line-format nil)

(setq default-left-fringe-width nil)
(setq default-right-fringe-width nil)
(setq default-left-margin-width nil)
(setq default-right-margin-width nil)

(setq default-line-spacing nil)

(setq default-truncate-lines nil)

;; show column & line numbers in status bar
(setq column-number-mode t)
(setq line-number-mode t)
(setq size-indication-mode t)

;; Also useful such format: (setq display-time-format " %H:%M %d-%m-%y ")
(setq display-time-24hr-format t)
(setq display-time-default-load-average nil)
(display-time)                          ; display-time-mode

(when window-system
  (set-background-color "white")
  (set-foreground-color "black")
  (set-cursor-color "brown")
  ;; (set-mouse-color "white")
  (setq cursor-type 'box)           ; box, hollow, bar, hbar
  ;;(setq blink-matching-delay 0.01)
  (blink-cursor-mode 1)
  ;; (set-face-font 'default "7x14")
  )

;; See what I am typing immediately (for keystroke in minibuffer).
(setq echo-keystrokes 0.2)

;;; ----------------------------------------------------------------
(message "silent runing")

;; (setq inhibit-splash-screen t) ; nonexist on 21.4.1
(setq inhibit-startup-message t)

;;; ----------------------------------------------------------------
(message "whitespaces")

(setq default-indicate-empty-lines t)
(setq default-indicate-buffer-boundaries 'left)

(setq-default show-trailing-whitespace t)

(setq next-line-add-newlines nil)

;; See also 'mode-require-final-newline'.
(add-hook 'text-mode-hook (lambda () (setq require-final-newline nil)))

;;; ----------------------------------------------------------------
(message "gnu serv, server")

;; (load "~/emacs/bin/gnuserv/gnuserv.el")
;; (require 'gnuserv)
;; (setq gnuserv-frame (selected-frame))

(when (>= emacs-major-version 22)
  (require 'server)
  (when (and (= emacs-major-version 23) (>= emacs-minor-version 1) (<= emacs-minor-version 2) (equal window-system 'w32))
    (defun server-ensure-safe-dir (dir) "Noop" t)) ; Suppress error directory ~/.emacs.d/server is unsafe on windows.
  (server-start)
  )

;; (desktop-load-default)
;; (desktop-read)

;;; ----------------------------------------------------------------
(message "standart/general settings")

(when (boundp 'confirm-kill-emacs)
  (setq confirm-kill-emacs 'yes-or-no-p))

;; Try to speed things up, especially in VM.
(setq gc-cons-threshold 2000000)

;; Default 'command-history' length too short (in Emacs 23.2 is 30).
(setq history-length 200)

;; Don't beep in my headphones!
(setq ring-bell-function '(lambda () "Empty ring-bell-function." nil))
(setq visible-bell t) ; With default ring-bell-function in text terminal
                      ; revert screen if press [end] or [home]

;; Prompt before evaluating local bits of lisp.  This stops people
;; putting things at the end of files which delete all your files!
(setq enable-local-variables t
      enable-local-eval      1)

(setq kill-whole-line t)

(setq view-read-only t)

(setq read-quoted-char-radix 16)

(when (>= emacs-major-version 22)
  (setq standard-display-table (make-display-table))
  (let ( (i ?\x80) hex hi low )
    (while (<= i ?\xff)
      (setq hex (format "%x" i))
      (setq hi (elt hex 0))
      (setq low (elt hex 1))
      (aset standard-display-table (unibyte-char-to-multibyte i)
            (vector (make-glyph-code ?\\ 'escape-glyph)
                    (make-glyph-code ?x 'escape-glyph)
                    (make-glyph-code hi 'escape-glyph)
                    (make-glyph-code low 'escape-glyph)))
      (setq i (+ i 1))))
  )

;; generic-define-* before (require 'generic-x) allow load all useful extra modes.
(setq generic-define-mswindows-modes t)
(setq generic-define-unix-modes t)
(require 'generic-x)

;; The following commands are usually disabled by default. Enable them...
(put 'eval-expression  'disabled nil)
(put 'downcase-region  'disabled nil)
(put 'upcase-region    'disabled nil)
(put 'narrow-to-page   'disabled nil)
(put 'narrow-to-region 'disabled nil)
(put 'scroll-left      'disabled nil)

(setq
 use-dialog-box t
 x-gtk-show-hidden-files t
 )

;;; ----------------------------------------------------------------
(message "switching, creating, selecting buffers")

(iswitchb-mode 1)
(setq iswitchb-buffer-ignore
      '("^ "
        "^\*Buffer"
        "^\*Completions\*"
        "^\*tramp"
        "^\*Dired log\*"
        "^\*Quail Completions\*"
        "^\*Disabled Command\*"
        "^TAGS"
        ))

(require 'uniquify)
(setq uniquify-buffer-name-style 'post-forward)

;; buffer-menu better then buffer-list, but ibuffer much better.
(global-set-key "\C-x\C-b" 'ibuffer)

;;; ----------------------------------------------------------------
(message "scrolling")

(defvar my-scroll-margin 4)

(setq-default
 scroll-step 1
 scroll-conservatively my-scroll-margin
 scroll-preserve-screen-position t
 )

;; Set margin only for desired modes! Do not frustrate calendar any more.
(make-variable-buffer-local 'scroll-margin)
(mapc (lambda (hook) (add-hook hook (lambda nil (setq scroll-margin my-scroll-margin))))
      ;; TODO its good invoke delete-dups for list, but delete-dups not exist in Emacs 21.4
      (append my-text-mode-hook-list my-devel-mode-hook-list my-scroll-margin-mode-hook-list) )

;;; ----------------------------------------------------------------
(message "search, isearch, occur")

(setq case-fold-search t)

(setq query-replace-highlight t)        ; highlight during query
(setq search-highlight t)               ; highlight incremental search

;; Make old Emacs key binding like in Emacs 23.x.
(when (< emacs-major-version 23)
  (global-set-key (kbd "M-s o") 'occur)
  )
(global-set-key [f7] 'occur)

;;; ----------------------------------------------------------------
(message "grep, find")

;; This settings have effect from Emacs 22.x.
(when (eq system-type 'windows-nt)
  ;; Workaround for Cygwin shell, when set 'CYGWIN=noglob'. By default 'shell-quote-argument'
  ;; quoted by double '\' chars this cause failure.
  (defun shell-quote-argument (argument)
    (concat "'" argument "'")
    )
  ;; Workaround for Cygwin when 'shell-file-name' is 'bash'.
  (setq null-device "/dev/null")
  )

;; -ls produce very noisy output:
;; (setq find-ls-option '("-ls" . ""))
;; So I use next expression, which work with GNU find, I replace %s with '0'
;; to avoid unnecessary sys calls and this make output aligned by column:
(setq find-ls-option '("-printf ' -rw-rw-rw- 0 %AY-%Am-%Ad %AH:%AM %p\n'" . ""))

;; Do not set t because some grep do not has --color options.
(setq grep-highlight-matches nil)
(setq grep-use-null-device nil)

(eval-after-load 'grep
  '(progn
     (add-to-list 'grep-find-ignored-directories "build" t)
     (add-to-list 'grep-find-ignored-directories "dist" t)
     (add-to-list 'grep-find-ignored-directories "lib" t)

     (when (boundp 'grep-find-ignored-files)
       (add-to-list 'grep-find-ignored-files "*TAGS")
       (add-to-list 'grep-find-ignored-files "GPATH")
       )
     ))

(global-set-key [M-f7] 'rgrep)

;;; ----------------------------------------------------------------
(message "syntax highlighting")

(setq font-lock-maximum-decoration t)
(global-font-lock-mode 1)

;;; ----------------------------------------------------------------
(message "highlight selected text")

;; 1/-1, when the mark is active, the region is highlighted.
(transient-mark-mode 1)
(delete-selection-mode 1)               ; 1/-1

;; Order of next items is important, (assignment must done before pc-selection-mode enabled).
(require 'pc-select)
(setq pc-select-selection-keys-only t)  ; To avoid some key bindings as F6, etc.
(setq pc-select-meta-moves-sexps t)
(cond
 ((= emacs-major-version 21) (pc-selection-mode))
 ((>= emacs-major-version 22) (pc-selection-mode 1))
 )

(when (eq window-system 'x)
  (setq x-select-enable-clipboard t)    ; for Emacs 21.2.1 and newer
  )

;;; ----------------------------------------------------------------
(message "highlighting current line")

(when window-system
  (custom-set-faces '(hl-line ((t (:inherit highlight :background "light yellow")))))
  (global-hl-line-mode 1)
  )

;;; ----------------------------------------------------------------
(message "paren, braces")

(show-paren-mode 1) ; Parenthesis matching via highlighting.
(setq show-paren-style (quote parenthesis))

;;; ----------------------------------------------------------------
(message "keyboard, mouse")

;; cyrillic-jis-russian  for 567 is :,.
;; cyrillic-jcuken  for SHIFT 567 is :,.
;; russian-computer for SHIFT 567 is %^&
(if (>= emacs-major-version 22)
    (setq default-input-method 'russian-computer)
  (setq default-input-method 'cyrillic-jcuken))
;; (pc-bindings-mode) ; Myself define keybinding, see

;;; ----------------------------------------------------------------
(message "completion")

;; I remove partial-completion-mode because it depricated in Emacs 24.0.
;; Completion controled by 'completion-styles' variable.

;;; ----------------------------------------------------------------
(message "mouse")

;; Scroll Bar gets dragged by mouse butn 1
(global-set-key [vertical-scroll-bar down-mouse-1] 'scroll-bar-drag)
;; Paste at point NOT at cursor
(setq mouse-yank-at-point t)
(when window-system
  (mouse-wheel-mode 1)
  )

;;; ----------------------------------------------------------------
(message "key binding, short-keys")

(global-set-key [home]    'beginning-of-line)
(global-set-key [end]     'end-of-line)
(global-set-key [C-home] 'beginning-of-buffer)
(global-set-key [C-end]  'end-of-buffer)
(global-set-key [C-delete]  'kill-word)
(global-set-key [delete]     'delete-char)
;; (global-set-key [backspace]  'backward-delete-char-untabify) ; not work properly in *info* mode

;; setting some f[1-12] keys
(global-set-key [f1]    'help)
(global-set-key [f2]    'save-buffer)
;; (global-set-key [xxx]    'ediff-buffers)
(global-set-key [f4]    'ispell-buffer)
(global-set-key [S-f6]  'rename-buffer)
(global-set-key [f8]    'kill-this-buffer)
(global-set-key (kbd "C-x C-k") 'kill-this-buffer)
(global-set-key [M-f4]  'save-buffers-kill-emacs)
(global-set-key [f6]    'toggle-truncate-lines)

;; frames, windows manipulation, switch buffers
(global-set-key [?\C-x right] 'next-buffer)
(global-set-key [?\C-x left]  'previous-buffer)

(global-set-key (kbd "\e\eg") 'goto-line)
(global-set-key (kbd "\e\er") 'query-replace-regexp)

;; Disable suspend. It ugly.
(when window-system
  (global-set-key (kbd "C-z") nil))
(global-set-key (kbd "C-x C-z") nil)

;; (global-set-key [language-change] 'ignore)

;;; ----------------------------------------------------------------
(message "coding system, charset, locale, lang")

;; Emacs 23.1 no longer need codepage-setup.
(when (<= emacs-major-version 22)
  (codepage-setup 866)
  (codepage-setup 1251)
  )

;; Comment because prefer-coding-system will be ignored.
;; (setq-default coding-system-for-read  'cp1251-dos)
;; (setq-default coding-system-for-write 'cp1251-dos)

;; (setq locale-coding-system  'cp1251-dos)
;; (set-language-environment 'UTF-8)
;; (set-terminal-coding-system 'cp1251)
;; (set-keyboard-coding-system 'cp1251)

(modify-coding-system-alist 'file "\\.el" 'iso-2022-7bit)
(cond
 ((equal window-system 'w32)          ; also (string-equal system-type "windows-nt")
  (set-selection-coding-system 'utf-16-le-dos)
  (setq-default buffer-file-coding-system 'cp1251)
  (setq default-file-name-coding-system 'cp1251)
  (setq default-process-coding-system '(cp1251 . cp1251))
  )
 ((equal window-system 'x)
  (prefer-coding-system 'utf-8-unix)
  (setq selection-coding-system 'compound-text-with-extensions)
  (setq x-select-request-type '(UTF8_STRING COMPOUND_TEXT TEXT STRING))
  (modify-coding-system-alist 'process ".*" 'utf-8-unix)
  )
 (t
  (prefer-coding-system 'cp1251-dos)
  (prefer-coding-system 'utf-8-unix)
  (modify-coding-system-alist 'process ".*" 'utf-8-unix)
  )
 )

;;; ----------------------------------------------------------------
(message "open file, ffap, dired")

(setq-default save-place t)
(require 'saveplace)

(require 'dired)

(require 'ffap)
(ffap-bindings)

;; I usually mistype "C-x C-f" to "C-x d" or "C-x C-d", so always use find-file,
;; because when file if directory find-file load dired, if regular file open it.
(global-set-key (kbd "C-x C-f") 'find-file-at-point)
(global-set-key (kbd "C-x C-d") 'find-file-at-point)
(global-set-key (kbd "C-x d") 'find-file-at-point)

;; Stop 'ffap' in Dired as its suggestion is inconvenient.
(define-key dired-mode-map (kbd "C-x C-f") 'find-file)
(define-key dired-mode-map (kbd "C-x C-d") 'find-file)
(define-key dired-mode-map (kbd "C-x d") 'find-file)

(setq dired-dwim-target t)
;; dangerous
;; (setq
;;  dired-recursive-copies 'top
;;  dired-recursive-deletes 'top)

(defun my-dired-up-dir ()
  "'Reuse' buffer if enter to dir or open new buffer if enter to file."
  (interactive)
  ;; (dired-current-directory) always end with trailing '/' char.
  (let* ( (dir (dired-current-directory)) (i (- (length dir) 2)) upperdir )
    (while (and
            (>= i 0)
            (not (equal (aref dir i) ?/)) )
      (setq i (- i 1))
      )
    (setq upperdir (substring dir 0 (+ i 1)))
    (when (file-directory-p upperdir)
      (find-alternate-file upperdir)
      (dired-goto-file dir)
      )
    ))
(define-key dired-mode-map (kbd "<backspace>") 'my-dired-up-dir)

(defun my-dired-enter-to-dir ()
  "'Reuse' buffer if enter to dir or open new buffer if enter to file."
  (interactive)
  (let ( (file (dired-get-file-for-visit)) )
    (if (file-directory-p file)
        (find-alternate-file file)
      (find-file file)
      )))
(define-key dired-mode-map (kbd "<return>")
  'my-dired-enter-to-dir)

(when (>= emacs-major-version 22)
  ;; Enable 'a' command.
  (put 'dired-find-alternate-file 'disabled nil)
  )

(defun my-file-name-tmp-p (file)
  (string-match "\\(^#.*#\\|~\\|\\.orig\\|\\.log\\|^.?\\.diff\\|.stackdump\\)\\'" (file-name-nondirectory file)))

(defun my-dired-flag-tmp-files ()
  "Flag all temporary files for deletion."
  (interactive)
  (dired-mark-if
   (let ( (fn (dired-get-filename 'verbatim t)) )
     (and fn (my-file-name-tmp-p fn)) )
   "backup file"
   )
  )

(define-key dired-mode-map (kbd "`") 'my-dired-flag-tmp-files)

;;; ----------------------------------------------------------------
(message "ls-lisp, dired ls")

;; If non-nil - use 'insert-directory-program', which I dislike.
(setq ls-lisp-use-insert-directory-program nil)
(setq ls-lisp-ignore-case t)
(setq ls-lisp-dirs-first t)
(if (memq system-type '(windows-nt cygwin))
    (setq ls-lisp-verbosity nil)
  (setq  ls-lisp-verbosity '(links uid gid)))
;; Force use 'ls-lisp-format-time-list'.
(setq ls-lisp-use-localized-time-format t)
(setq ls-lisp-format-time-list
      '("%Y-%m-%d %H:%M:%S"
        "%Y-%m-%d %H:%M   "))
(require 'ls-lisp)

;;; ----------------------------------------------------------------
(message "compression, archive")

(require 'jka-compr) ; Automatic decompression, hooks for tar-mode.
(when (fboundp 'auto-compression-mode)
  (auto-compression-mode 1))

(modify-coding-system-alist 'file "\\.\\(war\\|ear\\|sar\\|egg\\)\\'" 'no-conversion)

(add-to-list 'auto-mode-alist '("\\.\\(war\\|ear\\|sar\\|egg\\)\\'" . archive-mode))

;;; ----------------------------------------------------------------
(message "image, png, svg")

(when (fboundp 'auto-image-file-mode)
  (auto-image-file-mode 1))
(eval-after-load 'image-file
  '(progn
     ;; Exclude .svg image from supported image list, as Emacs doesn't come
     ;; with SVG shared library.
     (setq image-file-name-extensions (remove "svg" image-file-name-extensions))
     (when auto-image-file-mode
       ;; Re-initialize the image-file handler.
       (auto-image-file-mode t))
     ))

;;; ----------------------------------------------------------------
(message "revert buffer")

(global-set-key [f5]    'revert-buffer)
(setq revert-without-query (quote (".*")))
(setq auto-revert-interval 2)

;;; ----------------------------------------------------------------
(message "convenient")

(defun reglen()
  "Show region length."
  (interactive)
  (message "%s" (- (region-end) (region-beginning))))

;;; ----------------------------------------------------------------
(message "minibuffer")

(require 'icomplete) ; Interactive completion in minibuffer.
(icomplete-mode 1)

(mapc (lambda (ext) (add-to-list 'completion-ignored-extensions ext))
      '(
        ".class" "~" ".aux"
        ".o" ".obj" ".map" ".lib" ".lo" ".la" ".a" ".bin" ".exe"
        ;; Place dir at end to appear at the start of completion-ignored-extensions.
        "CVS/" ".hg/" ".svn/" ".git/" ".bzr/"
        ) )
(setq read-file-name-completion-ignore-case t)

;;; ----------------------------------------------------------------
(message "music")
(setq gnus-audio-au-player "winamp.exe"
      gnus-audio-directory "D:\\music"
      gnus-audio-wav-player "winamp.exe")

;;; ----------------------------------------------------------------
(message "browser")

(cond
 ((equal window-system 'w32)
  (setq browse-url-browser-function 'browse-url-default-windows-browser))
 ((boundp 'debian-emacs-flavor)
  (setq browse-url-browser-function 'browse-url-firefox))
 (t
  (setq browse-url-browser-function 'browse-url-mozilla)))

;;; ----------------------------------------------------------------
(message "calendar")

;; (setq mark-holidays-in-calendar t)
;; (setq all-christian-calendar-holidays t)
;; (setq calendar-date-display-form (quote ((format "%04s-%02d-%02d" year (string-to-int month) (string-to-int day)))))
;; (setq calendar-time-display-form (quote (24-hours ":" minutes (if time-zone " (") time-zone (if time-zone ")"))))
(setq calendar-week-start-day 1)
(setq european-calendar-style t)

;;; ----------------------------------------------------------------
(message "standard hooks")

(add-hook 'write-file-hooks 'time-stamp)

;;; ----------------------------------------------------------------
(message "auto-fill")

(setq-default fill-column 78)

(defvar my-fill-column 100
  "I use greater value then 78 for comment in prog source.")

;; By default used American convention - sentence and with two spaces. Change
;; it to one space. Has affect on filling and M-a, M-e commands.
(setq sentence-end-double-space nil)

;; Turn on auto-fill mode
(add-hook 'html-mode-hook 'turn-on-auto-fill)
(add-hook 'text-mode-hook 'turn-on-auto-fill)

;;; ----------------------------------------------------------------
(message "unknown")

;; browse-url mailcrypt gnus message sendmail bbdb pilot bibtex eiffel-mode emacs-w3m
;; eudc filladapt hugs-mode mpg123 php-mode ps-print
;; chord-mode - edit guitar music
;; discography - variant of BibTeX mode for discographies

;;; ----------------------------------------------------------------
(message "cacl, calculator")

(setq-default calc-group-digits t)
(setq-default calc-group-char "'")

(defun my-calc-eval-region (arg beg end)
  "Calculate the region and display the result in the echo area.
With prefix ARG non-nil, insert the result at the end of region."
  (interactive "P\nr")
  (require 'calc)
  (let* ((expr (buffer-substring-no-properties beg end))
         (result (calc-eval expr)))
    (if (null arg)
        (message "%s = %s" expr result)
      (goto-char end)
      (save-excursion
        (insert result)))))

;;; ----------------------------------------------------------------
(message "TeX, LaTeX")

(setq tex-run-command "initex")

;;; ----------------------------------------------------------------
(message "AUC TeX")

;(add-hook 'LaTeX-mode-hook 'LaTeX-install-toolbar)
;; (setq TeX-parse-self t)             ; Enable parse on load.
;; (setq TeX-auto-save t)              ; Enable parse on save.
;; Query for master file. If you often use \include or \input, you should make AUCTEX aware of the
;; multi-file document structure.
(setq-default TeX-master nil)

;(setq TeX-PDF-mode t)
;(setq TeX-interactive-mode t)
;(setq TeX-source-specials-mode 1)

;;; some more menu entries in the command list:
;;; see tex-mik.el from package auctex: %v is defined in tex-mik.el
;;; other variables are defined in tex.el from auctex
;;; the meaning of some auctex-varibles:
        ;symbols defined in tex.el and tex-mik.el:
        ;%b name slave tex-file  %t name master tex-file
        ;%d dvi-file  %f ps-file
        ;%l "latex --src-specials"
        ;%n line number  %p printcommand  %q "lpq"
        ;%r (TeX-style-check TeX-print-style)
        ;%s master-file-name without extention
        ;%v yap command view line
;(eval-after-load "tex"
;  '(progn
;     (add-to-list 'TeX-command-list
;         (list "->PS landscape for pdf"
;           "dvips %d -N0 -Ppdf -G0 -T 297mm,210mm -o %f "
;           'TeX-run-command nil t))
;     (add-to-list 'TeX-command-list
;         (list "All Texify run-viewer"
;           "texify --tex-opt=--src --run-viewer --clean %s.tex"
;           'TeX-run-command nil t))))

;;; ----------------------------------------------------------------
(message "reftex")

;; Reftex is included with Emacs 21.1.

;; (autoload 'reftex-mode     "reftex" "RefTeX Minor Mode" t)
;; (autoload 'turn-on-reftex  "reftex" "RefTeX Minor Mode" nil)
;; (autoload 'reftex-citation "reftex-cite" "Make citation" nil)
;; (autoload 'reftex-index-phrase-mode "reftex-index" "Phrase mode" t)
;; (add-hook 'LaTeX-mode-hook 'turn-on-reftex)   ; with AUCTeX LaTeX mode
;; (add-hook 'latex-mode-hook 'turn-on-reftex)   ; with Emacs latex mode

;;; ----------------------------------------------------------------
(message "PreviewLatex")

;(load "preview-latex.el" nil t t)

;(add-hook 'LaTeX-mode-hook #'LaTeX-preview-setup)
;(autoload 'LaTeX-preview-setup "preview")

;;; ----------------------------------------------------------------
(message "Info")

;; Because of Debian policy documentation covered by FDL license with invariant sections not allowed in packet
;; repository tree. So it must be installed manually. My usual configuration is install user local software
;; into ~/usr DISTDIR.
(unless (getenv "INFOPATH")
  (setenv "INFOPATH" "~/usr/share/info:"))

;;; ----------------------------------------------------------------
(message "man, woman")

(setq woman-use-own-frame nil)
(setq woman-fill-frame t)

;;; ----------------------------------------------------------------
(message "comint")

;; If non-nil, add a `/' to completed directories, ` ' to file names.
(setq comint-completion-addsuffix t)
;; Non-nil means go to the end of the line before sending input.
(setq comint-eol-on-send t)

;;; ----------------------------------------------------------------
(message "shell, sh, bash")

;; Setup Emacs to run bash as its primary shell.
;; (setq binary-process-input t)
;; (setq shell-file-name "bash")
;; (setq shell-command-switch "-c")
;; (setenv "SHELL" shell-file-name)

(ansi-color-for-comint-mode-on)

(defvar my-use-windows-shell nil
  "If t 'cmdproxy.exe' will be used as shell. Affect on M-x shell like
  commands. If nil, 'sh' will be used." )

(when (eq window-system 'w32)           ; may require Cygwin or MSYS
  (if my-use-windows-shell
      (progn
       ;; Restore shell name if user set SHELL env var for Cygwin/MSYS.
       (setq shell-file-name (concat exec-directory "cmdproxy.exe"))
       ;; Here is workaround: when explicit-shell-file-name is "bash" and shell-file-name is "cmdproxy.exe"
       ;; find-dired incorrect quote args (in shell-quote-argument (w32-shell-name) return "bash", but
       ;; shell-command used shell-file-name which value "cmdproxy.exe"). So I put additional space in pattern to
       ;; prevent quoting.
       (setq find-ls-option '("-exec ls -ld {}  ;" . "-ld"))
       )
    (progn
     ;; Use shell from Cygwin/MinGW.
     (setq shell-file-name "bash")
     (setenv "SHELL" "/bin/bash")
     (modify-coding-system-alist 'process "bash" '(cp1251-unix . cp1251-unix))
     )
    )
  ;; (setq explicit-shell-file-name "bash")
  (setq explicit-bash-args '("-i"))
  (setq explicit-sh-args '("-i"))
  )

;;; ----------------------------------------------------------------
(message "spell, ispell, aspell")

;; Settings for spelling done in '.emacs-autogen'.
;(add-hook 'text-mode-hook 'flyspell-mode)
;(setq flyspell-default-dictionary "russianw")
;(setq flyspell-delay '1)

;;; ----------------------------------------------------------------
(message "remember-mode")

(when (>= emacs-major-version 23)
  (require 'remember))

;;; ----------------------------------------------------------------
(message "org-mode, GTD, PIM, organize, todo")

(when (>= emacs-major-version 22)
  (require 'org))

;; XXX org-todo-keywords '((sequence "TODO" "START" "|" "DONE")) for org-version 4.67c
;; XXX (setq org-todo-keywords '("TODO" "START" "DONE")) for org-version 6.05b
(when (or (featurep 'org) (featurep 'org-install))
  (add-to-list 'auto-mode-alist '("\\.org$" . org-mode))
  (setq
   org-directory "~/.gtd"
   org-default-notes-file nil
   org-agenda-ndays 31
   org-deadline-warning-days 7
   org-agenda-show-all-dates t
   org-agenda-format-date "%Y-%m-%d, %A %e %B"
   org-agenda-skip-deadline-if-done t
   org-agenda-skip-scheduled-if-done t
   org-agenda-start-on-weekday nil
   org-reverse-note-order t
   org-hide-leading-stars t
   org-tags-column 64
   )
  (setq my-org-agenda-todo-file "~/.gtd/TODO.org")
  (setq my-org-agenda-note-file "~/.gtd/NOTE.org")
  (setq org-agenda-files `(,my-org-agenda-todo-file ,my-org-agenda-note-file))
  (define-key global-map "\C-ca" 'org-agenda)
  (define-key global-map "\C-ct" (lambda nil (interactive) (find-file my-org-agenda-note-file)))
  ;; I expect that these bindings work in all mode, Org mode use own, so redefine:
  (define-key org-mode-map [C-S-right] 'forward-word-mark)
  (define-key org-mode-map [C-S-left] 'backward-word-mark)
  (define-key org-mode-map [S-up] 'previous-line-mark)
  (define-key org-mode-map [S-down] 'next-line-mark)

  (when (or (featurep 'remember) (fboundp 'remember))
    (setq remember-annotation-functions '(org-remember-annotation))
    (setq remember-handler-functions '(org-remember-handler))
    (add-hook 'remember-mode-hook 'org-remember-apply-template)
    (define-key global-map "\C-cr" 'org-remember)
    (setq org-remember-templates
          ;; With one item org-mode do not prompt choose template.
          `(
            ("todo" ?t "* TODO %?" ,my-org-agenda-todo-file)
            ;; ("note" ?n "* %?\n" ,my-org-agenda-note-file)
            ))
    (setq org-remember-store-without-prompt t)
    (org-remember-insinuate)
    )

  ;; (setq org-todo-keyword-faces
  ;;       '(("TODO" . (:foreground "red" :weight bold))
  ;;         ("WAIT" . (:foreground "orange" :weight bold))
  ;;         ("DONE" . (:foreground "green" :weight bold))) )
  )

;;; ----------------------------------------------------------------
(message "TODO, XXX, FIXME highlight")
;; Show blanks and FIXME
;; http://www.emacswiki.org/cgi-bin/wiki/EightyColumnRule

(defface my-tab-face
  '((t :background "gray"))
  "Face for showing TABs."
  :group 'basic-faces)

(defface my-contrasty-face
  '((t :background "pink" :foreground "red" :weight bold))
  "Font for showing conflicts."
  :group 'basic-faces)

(dolist (mode my-devel-mode-list)
  (font-lock-add-keywords
   mode
   `(
     ("\t+" 0 'my-tab-face t)
     ( ,(concat "\\<\\(" (regexp-opt '("TODO" "FIX" "FIXME" "HACK" "XXX")) ":?\\)\\>") 1 'font-lock-warning-face t)
     ("\\(=\\|<\\|>\\)\\{7,\\}" 0 'my-contrasty-face t)
     ;; 64 times, for highlight C-u C-u C-u <key>
     ("\\([^[:space:]]\\)\\1\\{63\\}" 0 'my-contrasty-face t)
     ))
  )

;;; ----------------------------------------------------------------
(message "communication")

;;; ----------------------------------------------------------------
(message "jabber")

(when (featurep 'jabber)
  (setq
   jabber-history-enabled t
   jabber-use-global-history nil
   jabber-backlog-number 40
   jabber-backlog-days 30
   jabber-alert-presence-message-function (lambda (who oldstatus newstatus statustext) nil)
   )
  ;; Redefine standard binding for sending message form RET to C-RET.
  (define-key jabber-chat-mode-map (kbd "RET") 'newline)
  (define-key jabber-chat-mode-map [C-return] 'jabber-chat-buffer-send)
  )

(setq my-chat-prompt "[%t] %n>\n")
(when (featurep 'jabber)
  (setq
   jabber-chat-foreign-prompt-format my-chat-prompt
   jabber-chat-local-prompt-format my-chat-prompt
   jabber-groupchat-prompt-format my-chat-prompt
   jabber-muc-private-foreign-prompt-format "[%t] %g/%n>\n"
   )
  )

(when (featurep 'jabber)
  (let ( (mgs-list '("Я тутачки, а где Вы меня ожидали?"
                     "Software Development == Church Development. Step 1. Build it. Step 2. Pray."
                     "А любит Б, Б любит С, что делать A? Найти другую Б!")) )
    (random t)
    (setq jabber-default-show (nth (random (length mgs-list)) mgs-list))
    (setq jabber-default-status (nth (random (length mgs-list)) mgs-list))
    ) )

;; fsm used in emacs jabber
(when (featurep 'fsm)
  (setq fsm-debug nil)                  ; Disable *fsm-debug* buffer.
  )

(defvar my-jabber-users nil
  "Assoc list of jabber user group. Keys are strings, values are lists of JIDs.")

(defun my-jabber-send (group)
  "GROUP is keys from `my-jabber-users'"
  (interactive
   (list (completing-read "Select group: " my-jabber-users))
   )
  (let (
        (msg (if (use-region-p)
                 (buffer-substring (region-beginning) (region-end))
               (buffer-string)))
        (jc (jabber-read-account))
        )
    (deactivate-mark)
    (mapc
     (lambda (user)
       (jabber-send-message jc user "" msg "normal")
       )
     (cdr (assoc group my-jabber-users))
     )
    )
  )

(global-set-key (kbd "C-x C-j C-s") 'my-jabber-send)

;;; ----------------------------------------------------------------
(message "rcirc")

;; Turn on logging everything to a special buffer, for debugging.
;; (setq rcirc-debug-flag t)

(add-hook 'rcirc-mode-hook (lambda () (rcirc-track-minor-mode 1)))
(setq rcirc-time-format "%H:%M ")
(defun rcirc-handler-301 (process cmd sender args)
  "/away message handler.")

(setq rcirc-default-server "irc.freenode.net")
(setq rcirc-default-port 6667)
(setq rcirc-default-nick user-nick)
(setq rcirc-default-user-full-name user-full-name)

;;; ----------------------------------------------------------------
(message "erc")

;; Take off noise message.
(setq erc-track-exclude-types '("JOIN" "PART" "QUIT" "NICK" "MODE"))

(setq erc-current-nick-highlight-type 'nick-or-keyword)
(setq erc-track-use-faces t)

(setq erc-server-coding-system 'utf-8)

;;; ----------------------------------------------------------------
(message "VCS, version control, cvs, svn, mercurial, hg, bazaar, bzr, git, fossil")

(when (equal window-system 'w32)
  (modify-coding-system-alist 'process "cvs" '(cp1251-dos . cp1251-dos))
  (modify-coding-system-alist 'process "svn" '(cp1251 . cp1251))
  (setq vc-svn-checkin-switches '("--encoding" "UTF-8"))
  )

(when window-system
  (setq
   vc-annotate-very-old-color "#0b5b20"
   vc-annotate-background "white"
   vc-annotate-color-map
   '(
     (20 .  "#EE0000")
     (40 .  "#E0800D")
     (60 .  "#D3001A")
     (80 .  "#C68027")
     (100 . "#B90034")
     (120 . "#AB8042")
     (140 . "#9E004F")
     (160 . "#91805C")
     (180 . "#840069")
     (200 . "#778077")
     (220 . "#690084")
     (240 . "#5C8091")
     (260 . "#4F009E")
     (280 . "#4280AB")
     (300 . "#3400B9")
     (320 . "#2780C6")
     (340 . "#1A00D3")
     (360 . "#0D80E0")))
  )

;;; ----------------------------------------------------------------
(message "psvn")

(setq svn-status-verbose t)
(setq svn-status-hide-unmodified t)

;;; ----------------------------------------------------------------
(message "DVC")

(when (featurep 'dvc-emacs)
  (setq dvc-tips-enabled nil)
  )

;;; ----------------------------------------------------------------
(message "devel, prog, programming")

(add-to-list 'auto-mode-alist '("\\.cu$" . c-mode))

(defun my-c++-header-file-p ()
  "Return non-nil, if in a C++ header."
  (and (string-match "\\.h$"
                     (or (buffer-file-name)
                         (buffer-name)))
       (save-excursion
         (re-search-forward "\\_<class\\_>" nil t))))

(when (>= emacs-major-version 22)
  (add-to-list 'magic-mode-alist '(my-c++-header-file-p . c++-mode))
  )

(setq-default comment-style (quote indent))
(setq-default comment-column 44)
(setq-default comment-fill-column my-fill-column)

(mapc (lambda (hook) (add-hook hook (lambda () (setq fill-column my-fill-column)) ))
      my-devel-mode-hook-list)

;;; ----------------------------------------------------------------
(message "diff, patch, ediff, emerge")

(setq diff-switches "-u")

(setq ediff-diff-options "")
(setq ediff-custom-diff-options "-u")

;;; ----------------------------------------------------------------
(message "indenting")

(setq standard-indent 4)
(setq c-basic-offset 4)
(setq sh-basic-offset 2)
(setq sgml-basic-offset 4)

;; TAB (tab settings)
(setq-default tab-width 4)
(setq-default indent-tabs-mode nil)     ; spaces instead of tabs by default
(setq tab-always-indent t)
(setq c-tab-always-indent t)
(let ( (line-width 400) i )
  (setq i (* (ceiling line-width 4) 4))
  (setq tab-stop-list nil)
  (while (>= i 0)
    (setq tab-stop-list (cons i tab-stop-list))
    (setq i (- i 4))))

;;; ----------------------------------------------------------------
(message "compile")

(setq compile-auto-highlight t
      compile-command "make ")
;; compilation window shall scroll down if not 0
(setq compilation-scroll-output 1)

;; Show error in EN locale to easy search how fix problem in docs and Internet.
(setq compilation-environment '("LANG=C"))

(eval-after-load 'compile
  '(progn
     ;; My funny error messages.
     (add-to-list 'compilation-error-regexp-alist '("^\\( +\\[csc\\] \\|\\)\\(.*\\)(\\([0-9]*\\),\\([0-9]*\\)):" 2 3 4))
     (add-to-list 'compilation-error-regexp-alist '("^ *\\(.*\\)(\\([0-9]*\\)) +:" 1 2))
     (add-to-list 'compilation-error-regexp-alist '("^\"?\\([^\"]*\\)\"?,\\([0-9]*\\) .*\\[.*\\]: " 1 2)) ; KEIL compiler
     (when (boundp 'compilation-mode-font-lock-keywords)
       (add-to-list 'compilation-mode-font-lock-keywords '("\\(/[Oo][Uu][Tt]:[^[:blank:]]+\\)" . 1))
       (add-to-list 'compilation-mode-font-lock-keywords '("[[:blank:]]\\(/F[oe][^[:blank:]]+\\)" . 1))
       )
     ))

;;; ----------------------------------------------------------------
(message "TAGS, etags, ctags, GNU GLOBAL")

;; One of 'tags-table-list' or 'tags-file-name' control which TAGS files to
;; use.

(setq tags-add-tables t)

(when (featurep 'etags-table)
  (setq etags-table-search-up-depth 8)
  (when (featurep 'etags-select)
    (global-set-key "\M-." 'etags-select-find-tag)
    )
  )

(global-set-key "\M-\r" 'complete-tag)

;;; ----------------------------------------------------------------
(message "CEDET, semantic")

;; For debug use 'semantic-debug-idle-function' and 'semantic-debug-idle-work-function'.

(unless (featurep 'cedet)
  ;; (when (or (and (= emacs-major-version 23) (= emacs-minor-version 2)) (>= emacs-minor-version 24))
  ;;   (semantic-mode 1)
  ;;   )
  )

(when (featurep 'cedet)
  (unless (equal cedet-version "1.0pre7") ; Come with Emacs 23.2.
    ;; (semantic-load-enable-code-helpers)
    ;; (semantic-load-enable-guady-code-helpers)
    ;; (global-srecode-minor-mode 1)
    ;; (require 'semanticdb)
    ;; (require 'semantic-ia)
    )

  (global-ede-mode t)
  (global-semantic-idle-summary-mode 1)
  (global-semantic-idle-scheduler-mode 1)
  (setq semantic-idle-scheduler-idle-time 1) ; 1 sec.
  (global-semantic-decoration-mode 1)
  (global-semantic-mru-bookmark-mode 1)
  ;; (setq semantic-stickyfunc-sticky-classes '(function type variable include package))
  (global-semantic-stickyfunc-mode -1)
  (global-semantic-idle-completions-mode -1)

  (setq semantic-idle-scheduler-work-idle-time 60)
  ;; (setq semantic-idle-work-parse-neighboring-files-flag nil)

  ;; semantic-dependency-system-include-path, semantic-customize-system-include-path
  (setq-mode-local c-mode semanticdb-find-default-throttle '(project unloaded system recursive))
  (add-hook 'c-mode-hook (lambda nil (semantic-add-system-include "~/.emacs.d/include" 'c-mode)))
  (add-hook 'c-mode-hook (lambda nil (semantic-add-system-include "~/.emacs.d/include" 'c++-mode)))
  (global-semanticdb-minor-mode 1)

  (unless (equal cedet-version "1.0pre7") ; Come with Emacs 23.2.
    (require 'ede-locate)
    (when (cedet-idutils-version-check t)
      (add-to-list 'ede-locate-setup-options 'ede-locate-idutils)
      )
    (when (cedet-gnu-global-version-check t)
      (add-to-list 'ede-locate-setup-options 'ede-locate-global)
      (semanticdb-enable-gnu-global-databases 'c-mode)
      (semanticdb-enable-gnu-global-databases 'c++-mode)
      )
    )

  (global-set-key (kbd "C-c , .") 'semantic-ia-fast-jump)
  (global-set-key (kbd "C-c , d") 'semantic-ia-show-doc)
  (global-set-key (kbd "C-c , D") 'semantic-ia-describe-class)
  (global-set-key (kbd "C-c , c") 'semantic-ia-complete-symbol-menu)
  )

;;; ----------------------------------------------------------------
(message "imenu")

(when window-system
  (require 'imenu)
  (mapc (lambda (hook)
          (add-hook hook
                    (lambda ()
                      (imenu-add-menubar-index)
                      (run-hooks 'menu-bar-update-hook)
                      ) ))
        (delq 'nsis-mode-hook my-devel-mode-hook-list))
  )

;;; ----------------------------------------------------------------
(message "windows inf files for driver installin")

(add-to-list 'auto-mode-alist '("\\.inf\\'" . conf-mode))

;;; ----------------------------------------------------------------
(message "makefile, make")

(add-to-list 'auto-mode-alist '("\\(Makefile\\|Makefile\\..+\\)\\'" . makefile-gmake-mode))

;;; ----------------------------------------------------------------
(message "asm, assembler")

;; (setq-default asm-comment-char 59)
(add-hook 'asm-mode-hook '(lambda () (setq comment-start "/*") (setq comment-end "*/")) t)

(add-to-list 'auto-mode-alist '("\\.\\([sS]79\\|[sS]\\)\\'" . asm-mode))

;; (add-hook 'asm-mode-hook '(lambda () (local-unset-key ":")))
;; (add-hook 'asm-mode-hook '(lambda () (local-set-key ":" ":")))

;;; ----------------------------------------------------------------
(message "linker")

(when (fboundp 'iar-linker-config-mode)
  (add-to-list 'auto-mode-alist '("\\.icf\\'" . iar-linker-config-mode))
  )
(when (fboundp 'iar4-linker-config-mode)
  (add-to-list 'auto-mode-alist '("\\.xcl\\'" . iar4-linker-config-mode))
  )

;;; ----------------------------------------------------------------
(message "lisp, elisp")

(setq list-command-history-max 256)

(add-hook 'emacs-lisp-mode-hook 'turn-on-eldoc-mode)

(defun my-elisp-find-tag ()
  (interactive)
  (ring-insert find-tag-marker-ring (point-marker))
  (unless (find-variable-at-point)
    (find-function-at-point)
    ))
;; Goto elisp definition.
(define-key emacs-lisp-mode-map (kbd "M-.") 'my-elisp-find-tag)

;; http://www.emacswiki.org/emacs/PrettyLambda
(font-lock-add-keywords
 'emacs-lisp-mode
 `(
   ("(\\<\\(lambda\\)\\>"
    (1 (progn (compose-region (match-beginning 1) (match-end 1) ,(make-char 'greek-iso8859-7 107)) font-lock-keyword-face))
    )
   ))

;;; ----------------------------------------------------------------
(message "C, c-mode, C++, c++-mode")

(setq c-echo-syntactic-information-p t)
(add-hook 'c-mode-common-hook
 (lambda ()
   ;; Automatically inserte newlines after special characters such as brace, comma, semi-colon, and colon.
   (c-toggle-auto-newline -1)
   ;; Delete all preceding whitespace by DEL.
   (c-toggle-hungry-state -1)
   ))

(defconst my-c-style
  '((c-tab-always-indent . t)
    (c-comment-only-line-offset . 4)
    (c-hanging-braces-alist
     . (
        (brace-list-open)
        (substatement-open after)
        ))
    (c-hanging-colons-alist
     . (
        (access-label after)
        (case-label after)
        (inher-intro)
        (label after)
        (member-init-intro before)
        ))
    (c-cleanup-list
     . (
        defun-close-semi
        empty-defun-braces
        scope-operator
        ))
    (c-offsets-alist
     . (
        (arglist-intro . ++)
        (arglist-cont-nonempty . ++)
        (arglist-close . ++)
        (block-open . 0)
        (case-label . 0)
        (cpp-define-intro . 0)
        (comment-intro . 0)
        (func-decl-cont . ++)
        (inexpr-class . 0)
        (inline-open . 0)
        (knr-argdecl-intro . -)
        (label . 0)
        (statement-block-intro . +)
        (statement-cont . ++)
        (substatement-open . 0)
        (inextern-lang . 0)
        ))
    (c-echo-syntactic-information-p . t))
  "My C Programming Style")

(add-hook
 'c-mode-common-hook
 '(lambda ()
    (c-add-style "my" my-c-style t)
    ;; If set 'c-default-style' before 'c-add-style'
    ;; "Undefined style: my" error occured from 'c-get-style-variables'.
    (setq c-default-style
          '(
            (java-mode . "my") (c-mode . "my") (csharp-mode . "my") (c++-mode . "my") (objc-mode . "my")
            (idl-mode . "my")
            (awk-mode . "awk")
            (other . "my")
            ))
    ))

;;; ----------------------------------------------------------------
(message "javascript, js")

(if (>= emacs-major-version 23)
    (add-to-list 'auto-mode-alist '("\\.js$" . js-mode))
  (add-to-list 'auto-mode-alist '("\\.js$" . javascript-generic-mode))
  )

;;; ----------------------------------------------------------------
(message "bat file, batch")

;; loaded from 'generic-x.el'

;;; ----------------------------------------------------------------
(message "nsis-mode")

(when (fboundp 'nsis-mode)
  (add-to-list 'auto-mode-alist '("\\.\\(nsi\\|nsh\\)\\'" . nsis-mode))
  )

;;; ----------------------------------------------------------------
(message "csharp, c-sharp")

(autoload 'csharp-mode "csharp-mode" "Major mode for editing C# code." t)
(add-to-list 'auto-mode-alist '("\\.cs$" . csharp-mode))

;;; ----------------------------------------------------------------
(message "java")

;;; ----------------------------------------------------------------
(message "ECB")

(setq ecb-tip-of-the-day nil)

;;; ----------------------------------------------------------------
(message "html")

;;; ----------------------------------------------------------------
(message "nxml")

(setq nxml-sexp-element-flag t)
(setq nxml-child-indent 2)
(setq nxml-attribute-indent 4)

(eval-after-load 'rng-loc
  '(add-to-list 'rng-schema-locating-files "~/.emacs.d/rnc/schemas.xml")
  )

;;; ----------------------------------------------------------------
(message "psgml")

(setq sgml-set-face t)                  ; for highlighting in sgml

;;; ----------------------------------------------------------------
(message "sh, bash")

(add-to-list 'auto-mode-alist '("\\.cygport\\'" . shell-script-mode))

;;; ----------------------------------------------------------------
(message "printing")

;; Use Notepad to print plain text files to the default Windows printer
;(setq lpr-command "notepad")
;(setq lpr-headers-switches '("/p"))    ; \ mis-use these
;(setq lpr-switches nil)                ; / two variables
;(setq printer-name nil)        ; notepad takes the default
;(setq lpr-printer-switch "/P") ;; run notepad as batch printer
;;

;; Printing to file.

;(setq printer-name "~/myprint.txt")
;(setq ps-printer-name nil)
;(setq ps-print-header nil)

;;; ----------------------------------------------------------------
(message "SQL")

(setq sql-password "")

;;; ----------------------------------------------------------------
(message "backuping")

(setq
 make-backup-files t
 ;; In other case (by renaming) you loose original file creation date.
 backup-by-copying t
 backup-directory-alist '(("." . "~/.backup")) ; don't litter my fs tree
 delete-old-versions t                         ; delete excess backup versions silently
 kept-old-versions 1                           ; store first original version
 kept-new-versions 3                           ; store last 3 version
 version-control t)                            ; use versioned backups

;;; ----------------------------------------------------------------
(message "auto save")

(setq auto-save-default t)
;; If nil autosave to different than original to buffer file.
(setq auto-save-visited-file-name nil)
;; Note: if you kill unsaved file auto save file not deleted.
(setq delete-auto-save-files t)

;;; ----------------------------------------------------------------
(message "User welcome msg")

(add-hook 'emacs-startup-hook
          (lambda ()
            (let ( (mgs-list '("Welcome to emacs, the thermonuclear editor."
                               "You enter to Out Space. Emacs on."
                               "Nice day for Emacsing!")) )
              (message (nth (random (length mgs-list)) mgs-list)))))

(switch-to-buffer "*Messages*")
(setq default-directory "~/")
(switch-to-buffer "*scratch*")
(setq default-directory "~/")

;;; End loading...