-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdot_emacs
executable file
·47 lines (42 loc) · 2.54 KB
/
dot_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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
;;;;;;;;;;;;;;;;;;; Load emacs initial files in emacs-init directory ;;;;;;;;;;
(add-to-list 'load-path "/home/dove/.emacs.d")
(add-to-list 'load-path "/home/dove/.emacs.d/el-get/el-get")
;(mapc 'load (directory-files "/home/dove/.emacs.d" t "^[a-zA-Z0-9].*.el$"))
(load "~/.emacs.d/calendar-setup.el")
(load "~/.emacs.d/dove-ext.el")
(load "~/.emacs.d/my-color-theme.el")
(load "~/.emacs.d/el-get-settings.el")
(load "~/.emacs.d/plugins.el")
(load "~/.emacs.d/settings.el")
(load "~/.emacs.d/org-mode.el")
(load "~/.emacs.d/keybindings.el")
(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.
'(ansi-color-faces-vector [default default default italic underline bold bold-italic modeline])
'(ansi-color-names-vector ["black" "red" "PaleGreen" "yellow" "DodgerBlue1" "magenta" "cyan" "white"])
'(ecb-layout-window-sizes nil)
'(ecb-options-version "2.40")
'(ede-project-directories (quote ("/home/dove/Shell/branch_dev/agent_team/common" "/home/dove/hslt-cli-1.1.0-105/hslt/zodiac.cn.ibm.com/hslt/iaas/iaasapis")))
'(oddmuse-username "DavidYoung")
'(org-agenda-files (quote ("~/org/work.org")))
'(org-babel-load-languages (quote ((emacs-lisp . t) (sh . t) (perl . t))))
'(scalable-fonts-allowed t)
'(session-use-package t)
'(viper-emacs-state-mode-list (quote (Custom-mode dired-mode efs-mode tar-mode browse-kill-ring-mode recentf-mode recentf-dialog-mode occur-mode mh-folder-mode gnus-group-mode gnus-summary-mode completion-list-mode help-mode Info-mode Buffer-menu-mode compilation-mode rcirc-mode jde-javadoc-checker-report-mode view-mode vm-mode vm-summary-mode shell-mode)))
'(viper-insert-state-mode-list (quote (internal-ange-ftp-mode comint-mode gud-mode inferior-emacs-lisp-mode erc-mode eshell-mode)))
'(viper-mode nil)
'(viper-vi-style-in-minibuffer nil)
'(viper-want-emacs-keys-in-insert t))
(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.
'(bold ((t (:foreground "LightSalmon" :weight bold :slant italic))))
'(holiday ((t (:foreground "Aquamarine" :weight normal))))
'(org-level-1 ((t (:foreground "Aquamarine" :weight bold :height 1.44))))
'(org-level-2 ((t (:foreground "Cyan" :weight bold :height 1.3))))
'(org-level-3 ((t (:foreground "Salmon" :weight medium :height 1.2)))))