Checkpoint

This commit is contained in:
mANIA pHOBIC 2013-08-17 15:54:35 -07:00
parent 5b5a2306fc
commit 97d90e7a81
3 changed files with 29 additions and 24 deletions

25
init.el
View file

@ -7,27 +7,4 @@
(file-expand-wildcards "~/.emacs.d/lisp.d/*.el" t) (file-expand-wildcards "~/.emacs.d/lisp.d/*.el" t)
) )
; ;END;
; Load files
;
(mapc
(lambda (path) (load-file path))
'(
"~/.emacs.d/variables.el"
)
)
;
; Import required libraries
; Order matters
;
(mapc
(lambda (library) (require library))
'(
scala-mode-auto
ensime
metaweblog
xml-rpc
org2blog-autoloads
)
)
;

4
lisp.d/org-mode.el Normal file
View file

@ -0,0 +1,4 @@
;
;
;

24
lisp.d/scala.el Normal file
View file

@ -0,0 +1,24 @@
;
; Augment the load path
;
(mapc
(lambda (path) (add-to-list 'load-path (expand-file-name path)))
'(
"~/Software/Emacs/Lisp/scala-mode/current"
"~/Software/Emacs/Lisp/scala/ensime/current/elisp"
)
)
;
; Load libraries
; Order matters
;
(mapc
(lambda (library) (require library))
'(
scala-mode-auto
ensime
)
)