summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2011-07-27 12:11:12 +0200
committerGravatar Tom Willemsen2011-07-27 12:11:12 +0200
commita9c05ddb3df165d2e56a81ebfc2e1f8ef21bf3d4 (patch)
treef4e34fae0d8e83537d7a2458eab8b4c3d5d71229
parent07f377fb8315a9858b7e28e704286aac5160f0b2 (diff)
downloaddotfiles-a9c05ddb3df165d2e56a81ebfc2e1f8ef21bf3d4.tar.gz
dotfiles-a9c05ddb3df165d2e56a81ebfc2e1f8ef21bf3d4.zip
EMACS: Trying out zencoding
-rw-r--r--.gitmodules3
m---------emacs.d/elisp/zencoding0
-rw-r--r--emacs.el6
3 files changed, 9 insertions, 0 deletions
diff --git a/.gitmodules b/.gitmodules
index 0b68dd2..760f5ac 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -28,3 +28,6 @@
[submodule "emacs.d/elisp/rainbow"]
path = emacs.d/elisp/rainbow
url = git://git.naquadah.org/rainbow.git
+[submodule "emacs.d/elisp/zencoding"]
+ path = emacs.d/elisp/zencoding
+ url = git://github.com/rooney/zencoding.git
diff --git a/emacs.d/elisp/zencoding b/emacs.d/elisp/zencoding
new file mode 160000
+Subproject 6e5bfd864a679c1f699d03dc27223175cbde07e
diff --git a/emacs.el b/emacs.el
index fc3dbbc..5d55db7 100644
--- a/emacs.el
+++ b/emacs.el
@@ -97,6 +97,12 @@
(whitespace-mode 1)
(turn-on-auto-fill)))
+;;; Zencoding mode
+(add-to-list 'load-path "~/.emacs.d/elisp/zencoding")
+(autoload 'zencoding-mode "zencoding-mode" "Minor mode for zencoding" t)
+(add-hook 'sgml-mode-hook 'zencoding-mode) ; Auto-start on any markup
+ ; modes
+
(add-to-list 'load-path "~/.emacs.d/elisp/git-commit-mode")
(add-to-list 'load-path "~/.emacs.d/elisp/lua-mode")
(add-to-list 'load-path "~/.emacs.d/elisp/pi-php-mode")