more updates
Stefan Bund [Thu, 17 Jul 2014 15:45:42 +0000 (17:45 +0200)]
emacs-custom.el
nxhtml/etc/schema/xhtml-loader.rnc
setup/00init.el
setup/bindings.el
setup/ffap.el

index f61646e..efd6e27 100644 (file)
  '(develock-max-column-plist (quote (emacs-lisp-mode 99 lisp-interaction-mode w change-log-mode t texinfo-mode t c-mode 99 c++-mode 99 java-mode 99 jde-mode 99 html-mode 99 html-helper-mode 99 cperl-mode 99 perl-mode 99 mail-mode t message-mode t cmail-mail-mode t tcl-mode 99 ruby-mode 99)))
  '(diff-mode-hook (quote ((lambda nil (diff-auto-refine-mode 1)))))
  '(diff-switches "-u")
+ '(edit-server-done-hook nil)
  '(edit-server-new-frame nil)
  '(fill-column 98)
  '(flyspell-delay 30)
  '(flyspell-delayed-commands nil)
  '(frame-background-mode (quote light))
  '(global-auto-revert-mode nil)
- '(global-highlight-changes-mode t)
+ '(global-highlight-changes-mode nil)
  '(global-subword-mode t)
  '(global-visual-line-mode nil)
  '(global-whitespace-mode t)
@@ -50,6 +51,7 @@
  '(line-move-visual nil)
  '(ls-lisp-dirs-first t)
  '(magit-process-popup-time 1)
+ '(magit-server-window-for-rebase (quote pop-to-buffer))
  '(magit-status-buffer-switch-function (quote switch-to-buffer))
  '(nxml-child-indent 4)
  '(nxml-where-global-mode nil)
@@ -81,7 +83,7 @@
   ;; 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.
- '(default ((t (:inherit nil :stipple nil :background "#ffffff" :foreground "black" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 1 :width normal :foundry "default" :family "default"))))
+ '(default ((t (:inherit nil :stipple nil :background "#ffffff" :foreground "black" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 97 :width semi-condensed :foundry "misc" :family "6x13"))))
  '(font-lock-keyword-face ((((class color) (min-colors 8)) (:foreground "Purple"))))
  '(highlight-changes ((t (:background "alice blue"))))
  '(highlight-changes-delete ((t (:background "bisque1"))))
index d314851..f3b265d 100644 (file)
@@ -1 +1 @@
-include "../../../../../../../usr/share/emacs/23.3/etc/schema/xhtml.rnc"
+include "../../../../../../usr/share/emacs/23.3/etc/schema/xhtml.rnc"
index 896b284..9608efe 100644 (file)
@@ -5,6 +5,7 @@
                    (when (boundp 'bytecomp-filename) bytecomp-filename) buffer-file-name))))))
 
   (add-to-list 'load-path (concat base "lib"))
+  (add-to-list 'load-path (concat base "auto-install"))
   (setq custom-file (concat base "emacs-custom.el")))
 
 (load custom-file)
index 660ff0c..f890c47 100644 (file)
 (global-set-key "\C-c's" 'flyspell-mode)
 (global-set-key "\C-c'a" 'global-auto-revert-mode)
 
-(require 'develock)
-(require 'develock-py)
+;(require 'develock)
+;(require 'develock-py)
 
 (defun toggle-whitespace-modes ()
   (interactive)
   (if whitespace-mode
       (progn
         (whitespace-mode 0)
-        (develock-mode 0))
+        ;(develock-mode 0)
+        )
     (whitespace-mode 1)
-    (develock-mode 1)))
+    ;(develock-mode 1)
+    ))
 
 (global-set-key "\C-c' " 'toggle-whitespace-modes)
index 1cf09d5..af2e8c5 100644 (file)
@@ -1,3 +1,5 @@
+(require 'ffap)
+
 (defun my-find-file-at-point-with-line ()
   "Opens the file at point and goes to line-number."
   (interactive)
@@ -23,4 +25,4 @@
         (when line (goto-line line)))
       (error "File does not exist."))))
 
-(global-set-key (kbd "C-c C-x C-f") 'my-find-file-at-point-with-line)
\ No newline at end of file
+(global-set-key (kbd "C-c C-x C-f") 'my-find-file-at-point-with-line)