summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-09-03 22:52:08 -0500
committerCase Duckworth2021-09-03 22:52:08 -0500
commit91cdb1517d7cbd3610d9e4f3cfbcfca9e77929d8 (patch)
treea1e288cf73d96e91aa92a8ee1ea282d889a0fec4 /init.el
parentFix typos (diff)
downloademacs-91cdb1517d7cbd3610d9e4f3cfbcfca9e77929d8.tar.gz
emacs-91cdb1517d7cbd3610d9e4f3cfbcfca9e77929d8.zip
Add keybinds in lookup-map
Diffstat (limited to 'init.el')
-rw-r--r--init.el5
1 files changed, 5 insertions, 0 deletions
diff --git a/init.el b/init.el index 37a9d06..60caeaf 100644 --- a/init.el +++ b/init.el
@@ -392,6 +392,11 @@
392 (defun unfocused@save-buffers () 392 (defun unfocused@save-buffers ()
393 (save-some-buffers t)))) 393 (save-some-buffers t))))
394 394
395(setup find-func
396 (:global "C-c l f" #'find-function
397 "C-c l l" #'find-library
398 "C-c l v" #'find-variable))
399
395(setup flyspell 400(setup flyspell
396 (add-hook 'text-mode-hook #'flyspell-mode)) 401 (add-hook 'text-mode-hook #'flyspell-mode))
397 402