Initial commit
This commit is contained in:
commit
81b263a8f5
4 changed files with 40 additions and 0 deletions
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
auto-save-list
|
||||
eshell
|
||||
elpa
|
33
init.el
Normal file
33
init.el
Normal 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
1
lisp.d/dummy.el
Normal file
|
@ -0,0 +1 @@
|
|||
(setq track-eol t )
|
3
lisp.d/variables.el
Normal file
3
lisp.d/variables.el
Normal file
|
@ -0,0 +1,3 @@
|
|||
(setq
|
||||
make-backup-files nil
|
||||
)
|
Loading…
Reference in a new issue