Initial commit

This commit is contained in:
mANIA pHOBIC 2013-08-17 15:44:16 -07:00
commit 81b263a8f5
4 changed files with 40 additions and 0 deletions

3
.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
auto-save-list
eshell
elpa

33
init.el Normal file
View file

@ -0,0 +1,33 @@
;
; Load files matching lisp.d/*.el
;
(mapc
(lambda (path) (load-file path))
(file-expand-wildcards "~/.emacs.d/lisp.d/*.el" t)
)
;
; 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
)
)
;

1
lisp.d/dummy.el Normal file
View file

@ -0,0 +1 @@
(setq track-eol t )

3
lisp.d/variables.el Normal file
View file

@ -0,0 +1,3 @@
(setq
make-backup-files nil
)