Checkpoint
This commit is contained in:
parent
5b5a2306fc
commit
97d90e7a81
3 changed files with 29 additions and 24 deletions
25
init.el
25
init.el
|
@ -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
4
lisp.d/org-mode.el
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
;
|
||||||
|
;
|
||||||
|
;
|
||||||
|
|
24
lisp.d/scala.el
Normal file
24
lisp.d/scala.el
Normal 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
|
||||||
|
)
|
||||||
|
)
|
Loading…
Reference in a new issue