-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.el
More file actions
75 lines (65 loc) · 1.74 KB
/
init.el
File metadata and controls
75 lines (65 loc) · 1.74 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
;; setting up melpa
(setq package-archives
'(("melpa" . "https://melpa.org/packages/")
("gnu" . "https://elpa.gnu.org/packages/")))
(package-initialize)
;; python support
(use-package elpy
:ensure t
:init
(elpy-enable))
;; lisp support
(use-package slime
:ensure t
:init
(setq
;; org mode (zettlekasten features)
(use-package org-roam
:ensure t
:custom
(org-roam-directory "~/org-roam")
:bind (("C-c n l" . org-roam-buffer-toggle)
("C-c n f" . org-roam-node-find)
("C-c n i" . org-roam-node-insert))
:config
(org-roam-setup))
;; discord-rpc
(use-package elcord
:ensure t
:init
(elcord-mode))
;; vim style undo
(use-package undo-fu)
;; vim keybindings
(use-package evil
:demand t
:bind (("<escape>" . keyboard-escape-quit))
:init
(setq evil-undo-system 'undo-fu)
:config
(evil-mode 1))
;; vim everywhere
(use-package evil-collection
:after evil
:config
(setq evil-want-integration t)
(evil-collection-init))
;; fontsize
(set-face-attribute 'default nil :height 180)
;; stuff I don't understand
;; warning telling me to do this
(setq evil-want-keybinding nil)
;; not sure what this is was added automatically
(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.
'(org-log-into-drawer t)
'(package-selected-packages '(elcord elpy evil-collection org-roam slime undo-fu)))
(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.
)