projects
/
~bandali
/
configs
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
[emacs] update 4 drones
[~bandali/configs]
/
init.org
diff --git
a/init.org
b/init.org
index
d7c9aa6
..
44f31dc
100644
(file)
--- a/
init.org
+++ b/
init.org
@@
-327,8
+327,11
@@
it it's own file. While at it, treat themes as safe.
** Secrets file
** Secrets file
+Load the secrets file if it exists, otherwise show a warning.
+
#+begin_src emacs-lisp
#+begin_src emacs-lisp
-(load (no-littering-expand-etc-file-name "secrets"))
+(with-demoted-errors
+ (load (no-littering-expand-etc-file-name "secrets")))
#+end_src
** Better =$PATH= handling
#+end_src
** Better =$PATH= handling
@@
-1259,7
+1262,8
@@
TODO: break this giant source block down into individual org sections.
:config (column-number-mode))
(progn ; `text-mode'
:config (column-number-mode))
(progn ; `text-mode'
- (add-hook 'text-mode-hook #'indicate-buffer-boundaries-left))
+ (add-hook 'text-mode-hook #'indicate-buffer-boundaries-left)
+ (add-hook 'text-mode-hook #'abbrev-mode))
(use-package tramp
:defer t
(use-package tramp
:defer t
@@
-2278,8
+2282,11
@@
For when I /have to/ use GH.
message-user-fqdn "aminb.org")
:hook (;; (message-setup . mml-secure-message-sign-pgpmime)
(message-mode . flyspell-mode)
message-user-fqdn "aminb.org")
:hook (;; (message-setup . mml-secure-message-sign-pgpmime)
(message-mode . flyspell-mode)
- (message-mode . (lambda () (setq fill-column 65
- message-fill-column 65))))
+ (message-mode . (lambda ()
+ ;; (setq fill-column 65
+ ;; message-fill-column 65)
+ (make-local-variable 'company-idle-delay)
+ (setq company-idle-delay 0.2))))
;; :custom-face
;; (message-header-subject ((t (:foreground "#111" :weight semi-bold))))
;; (message-header-to ((t (:foreground "#111" :weight normal))))
;; :custom-face
;; (message-header-subject ((t (:foreground "#111" :weight semi-bold))))
;; (message-header-to ((t (:foreground "#111" :weight normal))))
@@
-2342,9
+2349,10
@@
I tried using =borg-elpa= instead of doing it like this, but it added
:load-path "lisp/bbdb"
:init
(load (expand-file-name "lisp/bbdb/bbdb-autoloads.el" user-emacs-directory))
:load-path "lisp/bbdb"
:init
(load (expand-file-name "lisp/bbdb/bbdb-autoloads.el" user-emacs-directory))
- (bbdb-mua-auto-update-init 'message)
- (setq bbdb-mua-auto-update-p 'query)
- (add-hook 'gnus-startup-hook 'bbdb-insinuate-gnus))
+ ;; (bbdb-mua-auto-update-init 'message)
+ (setq bbdb-mua-auto-update-p 'query
+ bbdb-complete-mail nil)
+ (bbdb-initialize 'gnus 'message))
#+end_src
** COMMENT message-x
#+end_src
** COMMENT message-x