-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.el
More file actions
59 lines (48 loc) · 1.56 KB
/
init.el
File metadata and controls
59 lines (48 loc) · 1.56 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
;;; package -- Summary:
;;;
;;; Stuart's Emacs Setup
;;; Copyright (c) 2013-2025 Stuart MacKay
;;;
;;; Author: Stuart MacKay <smackay@flagstonesoftware.com>
;;; URL: https://github.com/StuartMacKay/emacs.d
;;; Created: 2013-06-08
;;; Keywords: emacs setup org-mode
;;; Licence: WTFPL, grab your copy here: http://sam.zoy.org/wtfpl/
;;;
;;; This file is NOT part of GNU Emacs.
;;;
;;; The setup steals things from various authors and only works
;;; with Emacs 24+.
;;;
;;; Sources:
;;; http://aaronbedra.com/emacs.d/
;;; Packages
(require 'package)
(package-initialize)
(add-to-list 'package-archives
'("melpa-stable" . "https://stable.melpa.org/packages/") t)
;; load locally stored packages
(add-to-list 'load-path "~/.emacs.d/packages")
(require 'beancount)
;; setup
(add-to-list 'load-path "~/.emacs.d/setup")
(load "setup-beancount")
(load "setup-emacs")
(load "setup-themes")
(load "setup-modes")
(load "setup-spellchecker")
(load "setup-org-mode")
(load "setup-text-mode")
(load "setup-utilities")
(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 '(direx use-package monokai-theme magit flycheck)))
(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.
)