-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.emacs
24 lines (24 loc) · 1.14 KB
/
.emacs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
(package-initialize)
(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.
'(blink-cursor-mode nil)
'(custom-enabled-themes (quote (base16-solarized-dark)))
'(custom-safe-themes
(quote
("6ebb2401451dc6d01cd761eef8fe24812a57793c5ccc427b600893fa1d767b1d" default)))
'(custom-theme-directory "~/.emacs.d/themes")
'(inhibit-startup-screen t)
'(package-archives
(quote
(("gnu" . "http://elpa.gnu.org/packages/")
("MELPA" . "http://melpa.org/packages/"))))
'(tool-bar-style (quote text)))
(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.
'(default ((t (:inherit nil :stipple nil :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight light :height 120 :width semi-condensed :foundry "unknown" :family "Input Mono Narrow")))))