public
Description: Everything I would need to get emacs working the way I like it on a new machine
Clone URL: git://github.com/patmcnally/emacs.git
Fully operational
patmcnally (author)
Wed Sep 03 20:11:27 -0700 2008
commit  fc1792e4026605ad07fdb375c8a2f4b040c0e9a1
tree    58c8b6edd15ba672ce56d25bb2c4e6edc0d3105c
parent  c7fd9e9972545226448b163e65e3fccb974ebc47
...
24
25
26
 
 
 
 
 
 
 
 
 
 
 
27
28
29
...
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
0
@@ -24,6 +24,17 @@
0
 
0
 (setq auto-save-default nil)
0
 
0
+;;Customize NXHTML Mode
0
+(setq
0
+ nxhtml-global-minor-mode t
0
+ mumamo-chunk-coloring 'submode-colored
0
+ nxhtml-skip-welcome t
0
+ indent-region-mode t
0
+ rng-nxml-auto-validate-flag nil
0
+ nxml-degraded t)
0
+
0
+
0
+
0
 ;;(require 'yasnippet-bundle)
0
 
0
 ;;Ruby and Rails
0
...
2
3
4
 
 
5
6
7
...
15
16
17
 
18
 
19
20
21
22
 
 
23
24
25
...
2
3
4
5
6
7
8
9
...
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
0
@@ -2,6 +2,8 @@
0
 ;;; Pat's .emacs file, modeled after Steve Yegge's
0
 ;;;
0
 
0
+(require 'cl)
0
+
0
 ;; All emacs-related stuff is under ~/emacs
0
 (defvar emacs-root (if (eq system-type 'darwin) "/Users/pat/" "/home/pat/")
0
   "My home directory - the root of my personal emacs load-path.")
0
@@ -15,11 +17,15 @@
0
   (add-path "emacs/site-lisp/nxml-mode") ;; XML support
0
   (add-path "emacs/site-lisp/cedet-1.0pre4") ;; Collection of Emacs Development Enviroment Tools
0
   (add-path "emacs/site-lisp/ecb-snap") ;; Emacs code browser
0
+
0
   (add-path "emacs/site-lisp/rinari") ;; Rinari for Rails
0
+
0
 )
0
 
0
 ;;Sub configuration files
0
 (load-library "modes")
0
+(load-library "key-config")
0
+(load-library "rails-config")
0
 (load-library "ecb-config")
0
 (load-library (concat emacs-root "emacs/.custom")) ;; load in customizations
0
 
...
15
16
17
18
19
20
21
22
23
24
25
26
 
 
 
 
 
 
27
28
29
...
35
36
37
 
 
 
 
 
...
15
16
17
 
 
 
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
...
38
39
40
41
42
43
44
45
0
@@ -15,15 +15,18 @@
0
 (load "rng-auto.el")
0
 (add-to-list 'auto-mode-alist '("\\.\\(xml\\|xsl\\|rng\\|xhtml\\)\\'" . nxml-mode))
0
 
0
-;;NXHTML Mode
0
-(load (concat emacs-root "emacs/site-lisp/nxhtml/autostart.el"))
0
-
0
 ;;HAML Mode
0
 (require 'haml-mode nil 't)
0
 
0
 ;;SASS Mode
0
 (require 'sass-mode nil 't)
0
 
0
+;;Findr dependency for Jump
0
+(load "findr.el")
0
+
0
+;;Jump dependecy for Rinari
0
+(load (concat emacs-root "emacs/site-lisp/jump/jump.el"))
0
+
0
 ;;Rinari
0
 (require 'rinari)
0
 
0
@@ -35,3 +38,8 @@
0
 (dolist (hook '(change-log-mode-hook log-edit-mode-hook))
0
   (add-hook hook (lambda () (flyspell-mode -1))))
0
 
0
+;;NXHTML Mode
0
+(load (concat emacs-root "emacs/site-lisp/nxhtml/autostart.el"))
0
+
0
+
0
+(add-to-list 'auto-mode-alist '("\\.html\\.erb\\'" . eruby-nxhtml-mumamo))

Comments

    No one has commented yet.