-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.emacs
25 lines (25 loc) · 1.33 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
25
(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.
'(menu-bar-mode nil)
'(org-agenda-files (quote ("~/.org")))
'(package-archives (quote (("gnum" . "https://melpa.org/packages/") ("gnu" . "http://elpa.gnu.org/packages/"))))
'(pop3-authentication-scheme (quote pass))
'(pop3-leave-mail-on-server nil)
'(pop3-maildrop "hosttor.com")
'(pop3-password-required t)
'(tool-bar-mode nil))
(setq shell-command-switch "-ic")
(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 :background "black" :foreground "green" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight bold :height 90 :width normal :foundry "unknown" :family "DejaVu Sans Mono"))))
'(cursor ((t (:background "gold"))))
'(highlight ((t (:background "blue"))))
'(isearch ((t (:background "black" :foreground "green"))))
'(link ((t (:foreground "gold" :underline t))))
'(link-visited ((t (:inherit link :foreground "magenta")))))