-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinit.el
More file actions
38 lines (31 loc) · 1.27 KB
/
init.el
File metadata and controls
38 lines (31 loc) · 1.27 KB
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
; IF YOU ARE HAVING ISSUES, ENSURE org-plus-contrib is installed!
; you can do this via
; (add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/") t)
; (package-initialize)
; M-x package-list-packages
; select org-plus-contrib and install
; then restart Emacs, maybe twice
; If you are on MacOS, you should also disable the keyboard shortcuts
; for changing input sources (which are bound to ctrl+space)
;; 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)
;; (require 'benchmark-init)
;; ;; To disable collection of benchmark data after init is done.
;; (add-hook 'after-init-hook 'benchmark-init/deactivate)
(setq dotfiles-dir (expand-file-name "~/.emacs.d/"))
(add-to-list 'load-path (car (file-expand-wildcards (concat dotfiles-dir "elpa/org-9*"))))
(require 'org)
; (require 'org-loaddefs)
(require 'package)
(let (
(file-name-handler-alist nil)
(gc-cons-threshold 100000000)
)
(org-babel-load-file
(expand-file-name "settings.org"
user-emacs-directory))
(put 'set-goal-column 'disabled nil)
)