diff options
author | Case Duckworth | 2021-09-03 22:52:08 -0500 |
---|---|---|
committer | Case Duckworth | 2021-09-03 22:52:08 -0500 |
commit | 91cdb1517d7cbd3610d9e4f3cfbcfca9e77929d8 (patch) | |
tree | a1e288cf73d96e91aa92a8ee1ea282d889a0fec4 | |
parent | Fix typos (diff) | |
download | emacs-91cdb1517d7cbd3610d9e4f3cfbcfca9e77929d8.tar.gz emacs-91cdb1517d7cbd3610d9e4f3cfbcfca9e77929d8.zip |
Add keybinds in lookup-map
-rw-r--r-- | init.el | 5 |
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 | ||