-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.el
57 lines (55 loc) · 2.01 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Filename: init.el
;;
;; Copyright (C) 2018, Junhao
;; Author: Junhao <[email protected]>
;; Created at: Fri Aug 15 12:00:07 2014
;;
;; Description: This is my emacs config~
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; __ __ __ ___
;; |__) /\ / ` |__/ /\ / _` |__
;; | /~~\ \__, | \ /~~\ \__> |___
;; __ ___ ___ ___
;; |\/| /\ |\ | /\ / _` |__ |\/| |__ |\ | |
;; | | /~~\ | \| /~~\ \__> |___ | | |___ | \| |
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; init-packages.el # 插件管理
;; init-ui.el # 视觉层配置
;; init-better-defaults.el # 增强内置功能
;; init-keybindings.el # 快捷键绑定
;; custom.el # 存放使用编辑器接口产生的配置信息
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;
;;(package-initialize)
(add-to-list 'load-path "~/.emacs.d/lisp/")
;;
;; Package Management
;; -----------------------------------------------------------------
;;
(desktop-save-mode t)
(require 'init-packages)
(require 'init-better-defaults)
(require 'init-ui)
(require 'init-keybindings)
;;
;; ------------------------ EOF ----------------------------
(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.
'(package-selected-packages
(quote
(yaml-mode company popwin smartparens markdown-mode exec-path-from-shell flycheck)))
'(standard-indent 2))
(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.
)