This repository has been archived by the owner on May 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.el
59 lines (52 loc) · 1.84 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
58
59
;;++++++++++++++++++++++++++++++++++++++++
;; init.el
;;++++++++++++++++++++++++++++++++++++++++
;; Added by Package.el. This must come before configurations of
;; installed packages. Don't delete this line. If you don't want it,
;; just comment it out by adding a semicolon to the start of the line.
;; You may delete these explanatory comments.
(package-initialize)
(add-to-list 'load-path (expand-file-name "~/.emacs.d/configurations"))
(add-to-list 'package-archives
'("melpa" . "https://melpa.org/packages/") t)
(require 'init-theme)
(require 'init-fonts)
(require 'init-layout)
(require 'init-indentation)
(require 'init-dired)
(require 'init-org)
;; (require 'init-yas)
(require 'init-shell)
;; (require 'init-matlab)
(require 'init-ispell)
(require 'init-acomplete)
(require 'init-latex)
(require 'init-shortcuts)
(require 'init-tags)
;; (w32-send-sys-command 61488)
(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.
'(display-time-mode t)
'(ispell-program-name "aspell")
'(menu-bar-mode nil)
'(org-hide-leading-stars t)
'(package-selected-packages (quote (auctex csv-mode)))
'(size-indication-mode t)
'(t-indication-mode t)
'(tab-width 4)
'(tool-bar-mode nil)
'(truncate-partial-width-windows nil)
'(w32-lwindow-modifier (quote super) t)
'(whitespace-style
(quote
(tabs spaces trailing lines space-before-tab newline indentation empty space-after-tab space-mark tab-mark newline-mark))))
(server-start)
(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.
)