blob: 553dff1acbd9a56a0d87778c306a66ea47582bf2 (
plain) (
blame)
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
;;; lisp.el --- Generic LISP preferences -*- lexical-binding: t -*-
;; Author: William Carroll <wpcarro@gmail.com>
;; parent (up)
;; child (down)
;; prev-sibling (left)
;; next-sibling (right)
;;; Code:
(defconst wpc/lisp-mode-hooks
'(lisp-mode-hook
emacs-lisp-mode-hook
clojure-mode-hook
clojurescript-mode-hook
racket-mode-hook)
"List of LISP modes.")
(use-package racket-mode
:config
(general-define-key
:keymaps 'racket-mode-map
:states 'normal
:prefix "<SPC>"
"x" #'racket-send-definition)
(general-define-key
:keymaps 'racket-mode-map
:states 'normal
:prefix "<SPC>"
"X" #'racket-run)
(general-define-key
:keymaps 'racket-mode-map
:states 'normal
:prefix "<SPC>"
"d" #'racket-describe)
(setq racket-program "~/.nix-profile/bin/racket"))
(use-package lispyville
:init
(defconst lispyville-key-themes
'(c-w
operators
text-objects
;; Disabling this because I don't enjoy the way it moves around comments.
;; atom-motions
prettify
commentary
slurp/barf-cp
wrap
additional
additional-insert
additional-wrap
escape)
"All available key-themes in Lispyville.")
:config
(general-add-hook wpc/lisp-mode-hooks #'lispyville-mode)
(lispyville-set-key-theme lispyville-key-themes)
(progn
;;
(general-define-key
:keymaps 'lispyville-mode-map
:states 'motion
;; first unbind
"M-h" nil
"M-l" nil)
(general-define-key
:keymaps 'lispyville-mode-map
:states 'normal
;; first unbind
"M-j" nil
"M-k" nil
;; second rebind
;; TODO: Rebind to something that doesn't conflict with window resizing.
;; "C-M-h" #'lispyville-drag-backward
;; "C-M-l" #'lispyville-drag-forward
)))
;; deletes all bindings of f->kbd
;; binds kbd->
;; (kbd/bind-function->key
;; :keymap 'lispyville-mode-map
;; :states 'motion
;; #'lispyville-drag-backward "H")
;; Elisp
(use-package elisp-slime-nav
:config
(general-add-hook 'emacs-lisp-mode #'ielm-mode))
;; TODO: Should I be using `general-define-key' or `evil-leader/set-key'? My
;; gut say `general-define-key'.
(general-define-key
:keymaps 'emacs-lisp-mode-map
:states 'normal
:prefix "<SPC>"
"x" #'eval-defun)
(general-define-key
:keymaps 'emacs-lisp-mode-map
:states 'normal
:prefix "<SPC>"
"X" #'eval-buffer)
(general-define-key
:keymaps 'emacs-lisp-mode-map
:states 'normal
:prefix "<SPC>"
"d" (lambda ()
(interactive)
(with-current-buffer (current-buffer)
(helpful-function (symbol-at-point)))))
(provide 'wpc-lisp)
;;; wpc-lisp.el ends here
|