From 43c2d65ef8c76db78fe2541f33b1b097ff6b2e21 Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Fri, 6 Aug 2021 21:26:14 -0500 Subject: Further configure erc --- init.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'init.el') diff --git a/init.el b/init.el index f31da5d..a1bca1b 100644 --- a/init.el +++ b/init.el @@ -323,6 +323,8 @@ erc-nick-truncate (- erc-fill-static-center 2) erc-prompt (lambda () (acdw-erc/prompt)) erc-prompt-for-password nil ; use ~/.authinfo + erc-rename-buffers t + erc-server erc-default-server erc/servers (when (boundp 'erc-autojoin-channels-alist) (mapcar #'car erc-autojoin-channels-alist)) @@ -345,7 +347,9 @@ erc-track-mode erc-truncate-mode) - (:bind "C-c C-b" acdw-erc/erc-switch-to-buffer) + (:bind "C-c C-b" acdw-erc/erc-switch-to-buffer + "C-c C-c" nil ; def: `erc-toggle-interpret-controls' + ) (with-eval-after-load 'erc (setup (:straight erc-hl-nicks) -- cgit 1.4.1-21-gabe81 From fde8912d00b2699db2c4f21744b521484653c3b0 Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Fri, 6 Aug 2021 21:26:29 -0500 Subject: Change org recipe --- init.el | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'init.el') diff --git a/init.el b/init.el index a1bca1b..74709cc 100644 --- a/init.el +++ b/init.el @@ -1128,14 +1128,13 @@ if ripgrep is installed, otherwise `consult-grep'." (require 'orderless) (:option (prepend completion-styles) 'orderless)) -(setup (:straight (org :host nil - :repo "https://code.orgmode.org/bzg/org-mode.git")) - (:straight (org-contrib :host nil - :repo "https://git.sr.ht/~bzg/org-contrib")) +(setup (:straight org) + (:straight org-contrib) (require 'acdw-org) ; so I don't clutter up init.el (:option org-adapt-indentation nil org-catch-invisible-edits 'smart org-clock-clocked-in-display 'mode-line + org-clock-string-limit 7 ; gives time and not title org-confirm-babel-evaluate nil org-ellipsis " …" org-export-coding-system 'utf-8-unix -- cgit 1.4.1-21-gabe81 From 93be3cb626c1eb41796a7dc7ebe06d9b4f9eb027 Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Fri, 6 Aug 2021 21:26:37 -0500 Subject: Configure vertico --- init.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'init.el') diff --git a/init.el b/init.el index 74709cc..d4ca71b 100644 --- a/init.el +++ b/init.el @@ -1284,7 +1284,9 @@ if ripgrep is installed, otherwise `consult-grep'." (setup (:straight (vertico :host github :repo "minad/vertico")) - (setq resize-mini-windows 'grow-only) + (:option resize-mini-windows 'grow-only + vertico-count-format nil + vertico-cycle t) (if (boundp 'comp-deferred-compilation-deny-list) (add-to-list 'comp-deferred-compilation-deny-list "vertico")) (vertico-mode +1)) -- cgit 1.4.1-21-gabe81