-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathinit-emacs.el
75 lines (65 loc) · 2.2 KB
/
init-emacs.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
;;; -*- mode: emacs-lisp; coding: utf-8; -*-
;; Copyright (C) 2008- Liu Xin
;;
;; This code has been released into the Public Domain.
;; You may do whatever you like with it.
;;
;; @file
;; @author Liu Xin <meteor1113@qq.com>
;; @URL https://github.com/meteor1113/dotemacs
;;; Commentary:
;;; Code:
(add-to-list 'load-path
(expand-file-name "init"
(file-name-directory
(or load-file-name buffer-file-name))))
(require 'init-custom nil 'noerror)
(require 'init-path nil 'noerror)
(require 'init-editor nil 'noerror)
(require 'init-keybinding nil 'noerror)
(require 'init-package nil 'noerror)
;; modules
(require 'init-auto-complete nil 'noerror)
(require 'init-auto-insert nil 'noerror)
(require 'init-bm nil 'noerror)
(require 'init-calendar nil 'noerror)
(require 'init-cedet nil 'noerror)
(require 'init-company nil 'noerror)
(require 'init-dired nil 'noerror)
(require 'init-ecb nil 'noerror)
(require 'init-emms nil 'noerror)
(require 'init-fci nil 'noerror)
(require 'init-flycheck nil 'noerror)
(require 'init-font nil 'noerror)
(require 'init-helm nil 'noerror)
(require 'init-hideshow nil 'noerror)
(require 'init-highlight nil 'noerror)
(require 'init-leim nil 'noerror)
;; (require 'init-server nil 'noerror)
(require 'init-tabbar nil 'noerror)
(require 'init-toolbar nil 'noerror)
(require 'init-vc nil 'noerror)
(require 'init-yasnippet nil 'noerror)
;; progmodes
(require 'init-prog nil 'noerror)
(require 'init-cc nil 'noerror)
(require 'init-csharp nil 'noerror)
(require 'init-emacs-lisp nil 'noerror)
(require 'init-gdb nil 'noerror)
(require 'init-go nil 'noerror)
(require 'init-haskell nil 'noerror)
(require 'init-java nil 'noerror)
(require 'init-javascript nil 'noerror)
(require 'init-perl nil 'noerror)
(require 'init-php nil 'noerror)
(require 'init-python nil 'noerror)
(require 'init-rust nil 'noerror)
(require 'init-sh nil 'noerror)
(require 'init-sql nil 'noerror)
;; textmodes
(require 'init-artist nil 'noerror)
(require 'init-org nil 'noerror)
(require 'init-text nil 'noerror)
(require 'init-xml nil 'noerror)
(provide 'init-emacs)
;;; init-emacs.el ends here