summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2021-08-07 15:09:22 -0500
committerCase Duckworth2021-08-07 15:09:22 -0500
commitadbe9b0d694b1556ffd5a37c828db672915243fb (patch)
tree63b945ff7c72040f42301034d85f35f97be96752 /init.el
parentAdd space to word-count modeline (diff)
parentConfigure vertico (diff)
downloademacs-adbe9b0d694b1556ffd5a37c828db672915243fb.tar.gz
emacs-adbe9b0d694b1556ffd5a37c828db672915243fb.zip
Merge branch 'main' of tildegit.org:acdw/emacs
Diffstat (limited to 'init.el')
-rw-r--r--init.el17
1 files changed, 11 insertions, 6 deletions
diff --git a/init.el b/init.el index d226d77..26474b8 100644 --- a/init.el +++ b/init.el
@@ -324,6 +324,8 @@
324 erc-nick-truncate (- erc-fill-static-center 1) 324 erc-nick-truncate (- erc-fill-static-center 1)
325 erc-prompt (lambda () (acdw-erc/prompt)) 325 erc-prompt (lambda () (acdw-erc/prompt))
326 erc-prompt-for-password nil ; use ~/.authinfo 326 erc-prompt-for-password nil ; use ~/.authinfo
327 erc-rename-buffers t
328 erc-server erc-default-server
327 erc/servers 329 erc/servers
328 (when (boundp 'erc-autojoin-channels-alist) 330 (when (boundp 'erc-autojoin-channels-alist)
329 (mapcar #'car erc-autojoin-channels-alist)) 331 (mapcar #'car erc-autojoin-channels-alist))
@@ -346,7 +348,9 @@
346 erc-track-mode 348 erc-track-mode
347 erc-truncate-mode) 349 erc-truncate-mode)
348 350
349 (:bind "C-c C-b" acdw-erc/erc-switch-to-buffer) 351 (:bind "C-c C-b" acdw-erc/erc-switch-to-buffer
352 "C-c C-c" nil ; def: `erc-toggle-interpret-controls'
353 )
350 354
351 (with-eval-after-load 'erc 355 (with-eval-after-load 'erc
352 (setup (:straight erc-hl-nicks) 356 (setup (:straight erc-hl-nicks)
@@ -1125,14 +1129,13 @@ if ripgrep is installed, otherwise `consult-grep'."
1125 (require 'orderless) 1129 (require 'orderless)
1126 (:option (prepend completion-styles) 'orderless)) 1130 (:option (prepend completion-styles) 'orderless))
1127 1131
1128(setup (:straight (org :host nil 1132(setup (:straight org)
1129 :repo "https://code.orgmode.org/bzg/org-mode.git")) 1133 (:straight org-contrib)
1130 (:straight (org-contrib :host nil
1131 :repo "https://git.sr.ht/~bzg/org-contrib"))
1132 (require 'acdw-org) ; so I don't clutter up init.el 1134 (require 'acdw-org) ; so I don't clutter up init.el
1133 (:option org-adapt-indentation nil 1135 (:option org-adapt-indentation nil
1134 org-catch-invisible-edits 'smart 1136 org-catch-invisible-edits 'smart
1135 org-clock-clocked-in-display 'mode-line 1137 org-clock-clocked-in-display 'mode-line
1138 org-clock-string-limit 7 ; gives time and not title
1136 org-confirm-babel-evaluate nil 1139 org-confirm-babel-evaluate nil
1137 org-ellipsis " …" 1140 org-ellipsis " …"
1138 org-export-coding-system 'utf-8-unix 1141 org-export-coding-system 'utf-8-unix
@@ -1280,7 +1283,9 @@ if ripgrep is installed, otherwise `consult-grep'."
1280(setup (:straight (vertico 1283(setup (:straight (vertico
1281 :host github 1284 :host github
1282 :repo "minad/vertico")) 1285 :repo "minad/vertico"))
1283 (setq resize-mini-windows 'grow-only) 1286 (:option resize-mini-windows 'grow-only
1287 vertico-count-format nil
1288 vertico-cycle t)
1284 (if (boundp 'comp-deferred-compilation-deny-list) 1289 (if (boundp 'comp-deferred-compilation-deny-list)
1285 (add-to-list 'comp-deferred-compilation-deny-list "vertico")) 1290 (add-to-list 'comp-deferred-compilation-deny-list "vertico"))
1286 (vertico-mode +1)) 1291 (vertico-mode +1))