-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.el
34 lines (30 loc) · 1.37 KB
/
init.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
(require 'package)
;; Any add to list for package-archives (to add marmalade or melpa) goes here
(add-to-list 'package-archives
'("MELPA" .
"http://melpa.org/packages/"))
(package-initialize)
;; Refresh contents of all packages in ~package-archives~ before starting.
(when (not package-archive-contents)
(package-refresh-contents))
;; Load the settings from config.org file.
(org-babel-load-file "~/.emacs.d/config.org")
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(helm-completion-style 'emacs)
'(ispell-dictionary nil)
'(package-selected-packages
'(markdown-mode helm xcscope magit beacon org-bullets idle-highlight-mode solarized-theme evil which-key)))
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
(custom-set-faces
;; custom-set-faces was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(idle-highlight ((t (:background "yellow" :foreground "black")))))