summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-09-08 08:43:36 -0500
committerCase Duckworth2021-09-08 08:43:36 -0500
commit9ea6107997d2fb1ccb03175a9bb52da6f551a516 (patch)
treede58aa520122e5cd08c6104a72911b68f68a554b /init.el
parentAdd to TODO (diff)
parentblep (diff)
downloademacs-9ea6107997d2fb1ccb03175a9bb52da6f551a516.tar.gz
emacs-9ea6107997d2fb1ccb03175a9bb52da6f551a516.zip
Merge branch 'main' of tildegit.org:acdw/emacs
Diffstat (limited to 'init.el')
-rw-r--r--init.el14
1 files changed, 12 insertions, 2 deletions
diff --git a/init.el b/init.el index 430a809..e588dd5 100644 --- a/init.el +++ b/init.el
@@ -235,13 +235,13 @@ AKA, DO NOT USE THIS FUNCTION!!!"
235 235
236 circe-command-QUIT :after 236 circe-command-QUIT :after
237 (defun circe-quit@kill-buffer (&rest _) 237 (defun circe-quit@kill-buffer (&rest _)
238 (let ((circe-server-killed-confirmation nil)) 238 (let ((circe-server-killed-confirmation 'kill-all))
239 (with-circe-server-buffer 239 (with-circe-server-buffer
240 (kill-buffer)))) 240 (kill-buffer))))
241 241
242 circe-command-GQUIT :after 242 circe-command-GQUIT :after
243 (defun circe-gquit@kill-buffer (&rest _) 243 (defun circe-gquit@kill-buffer (&rest _)
244 (let ((circe-server-killed-confirmation nil)) 244 (let ((circe-server-killed-confirmation 'kill-all))
245 (dolist (buf (circe-server-buffers)) 245 (dolist (buf (circe-server-buffers))
246 (with-current-buffer buf 246 (with-current-buffer buf
247 (kill-buffer)))))) 247 (kill-buffer))))))
@@ -933,6 +933,11 @@ successive invocations."
933 "C-c l l" #'find-library 933 "C-c l l" #'find-library
934 "C-c l v" #'find-variable)) 934 "C-c l v" #'find-variable))
935 935
936(setup flymake
937 (:hook-into prog-mode)
938 (:bind "M-n" #'flymake-goto-next-error
939 "M-p" #'flymake-goto-prev-error))
940
936(setup flyspell 941(setup flyspell
937 (add-hook 'text-mode-hook #'flyspell-mode)) 942 (add-hook 'text-mode-hook #'flyspell-mode))
938 943
@@ -1115,6 +1120,11 @@ successive invocations."
1115(setup isearch 1120(setup isearch
1116 (:option search-default-mode t)) 1121 (:option search-default-mode t))
1117 1122
1123(setup (:straight (kaomoji
1124 :host nil
1125 :repo "https://tildegit.org/acdw/kaomoji-insert"))
1126 (:global "C-x 8 k" #'kaomoji-insert))
1127
1118(setup (:straight lacarte) 1128(setup (:straight lacarte)
1119 (:global "<f10>" #'lacarte-execute-menu-command)) 1129 (:global "<f10>" #'lacarte-execute-menu-command))
1120 1130