summaryrefslogtreecommitdiffstats
path: root/compile-emacs.el
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2011-06-15 12:19:30 +0200
committerGravatar Tom Willemsen2011-06-15 12:19:30 +0200
commit9df6bb4922d08a9db2233f738b691eebc6e3120a (patch)
tree4f4a39aa28b1eb5c3afcbf5c941bc7dbfdc3cf1f /compile-emacs.el
parentc608291b013290b80f6aaf71ec6d0abc4b13c87f (diff)
downloaddotfiles-9df6bb4922d08a9db2233f738b691eebc6e3120a.tar.gz
dotfiles-9df6bb4922d08a9db2233f738b691eebc6e3120a.zip
EMACS: compile, htmlize, js, stumpwm
* install.sh tries to compile emacs.el before linking the emacs.elc to ~/. This is to always have a compiled .emacs.elc for speediest startup. * I removed a little bit of code from htmlize.el that was causing trouble with the naquadah theme. * I removed javascript-mode, because the built-in js-mode is better. * I Added stumpwm mode * When I save a file and it is in html-mode it will try and replace all occurrences of é with é before continueing.
Diffstat (limited to 'compile-emacs.el')
-rw-r--r--compile-emacs.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/compile-emacs.el b/compile-emacs.el
new file mode 100644
index 0000000..239b8b4
--- /dev/null
+++ b/compile-emacs.el
@@ -0,0 +1,6 @@
+(add-to-list 'load-path "~/.emacs.d/elisp")
+(add-to-list 'load-path "~/.emacs.d/naquadah-theme")
+(add-to-list 'load-path "~/.emacs.d/elisp/markdown-mode")
+(add-to-list 'load-path "~/.emacs.d/elisp/git-commit-mode")
+
+(byte-compile-file "emacs.el")