-
Notifications
You must be signed in to change notification settings - Fork 16
/
init.el
42 lines (31 loc) · 1.09 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
;;; init --- configuration initialization
;;; Commentary:
;; Thanks to Kevin Beam and Matt Savoie for starting me
;; on my emacs journey. Without there encouragment,
;; hand-me-down configurations and help along the way
;; I would not be a part of the wonderful emacs community!
;;
;; Kevin Beam: https://github.com/kwbeam/kwb-emacs
;; Matt Savoie: https://github.com/flamingbear/emacs-config
;;
;; This configuration has grown from the two above.
;;; Code:
(let ((default-directory "~/.emacs.d/"))
(normal-top-level-add-subdirs-to-load-path))
(setq default-directory "~/projects/" )
(require 'kp-packages)
(require 'kp-ui)
(require 'kp-kbd)
(require 'kp-dev)
(when (memq window-system '(mac ns))
(exec-path-from-shell-initialize))(when (memq window-system '(mac ns))
(exec-path-from-shell-initialize))
(setq magit-last-seen-setup-instructions "1.4.0")
(setq backup-directory-alist
`((".*" . ,temporary-file-directory)))
(setq auto-save-file-name-transforms
`((".*" ,temporary-file-directory t)))
(require 'multiple-cursors)
(require 'pbcopy)
(turn-on-pbcopy)
;;; init.el ends here