blob: 8a49306a3404698e0200f49dbece7bd9146817b3 (
plain)
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
76
77
78
79
80
81
82
83
|
(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.
'(custom-enabled-themes (quote (sanityinc-tomorrow-night)))
'(custom-safe-themes
(quote
("06f0b439b62164c6f8f84fdda32b62fb50b6d00e8b01c2208e55543a6337433a" default)))
'(package-selected-packages
(quote
(helm-swoop evil-leader helm spaceline evil use-package))))
(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.
)
;; Bootstrap `use-package'
(require 'package)
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/"))
(package-initialize)
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
;; evil
(use-package evil-leader
:ensure t
:config
(global-evil-leader-mode)
)
(use-package evil
:config
(evil-mode 1)
(modify-syntax-entry ?_ "w")
)
;; helm
(use-package helm
:ensure t
:config
(define-key helm-map (kbd "TAB") #'helm-execute-persistent-action)
(define-key helm-map (kbd "<tab>") #'helm-execute-persistent-action)
(define-key helm-map (kbd "C-z") #'helm-select-action)
)
(use-package helm-swoop
:ensure t
)
;; org
(use-package org
:ensure t
)
(use-package org-brain
:ensure t
:init
(setq org-brain-path "~/brain")
;; For Evil users
(with-eval-after-load 'evil
(evil-set-initial-state 'org-brain-visualize-mode 'emacs))
:config
(setq org-id-track-globally t)
(setq org-id-locations-file "~/.emacs.d/.org-id-locations")
(setq org-brain-visualize-default-choices 'all)
(setq org-brain-title-max-length 12))
;; spaceline
(use-package spaceline :ensure t)
(setq powerline-default-separator 'bar)
(spaceline-emacs-theme)
;; theme
(menu-bar-mode -1)
(tool-bar-mode -1)
(toggle-scroll-bar -1)
(color-theme-sanityinc-tomorrow-night)
;; keybindings
(evil-leader/set-key "f" 'helm-find-files)
(evil-leader/set-key "m" 'helm-mini)
(evil-leader/set-key "b" 'org-brain-visualize)
|