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
f58e843
..
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
@@
-846,7
+849,7
@@
In short, my favourite way of life.
#+begin_src emacs-lisp
(use-package org
#+begin_src emacs-lisp
(use-package org
- :defer
3
+ :defer
1
:general
(amin--leader-keys
:states 'normal
:general
(amin--leader-keys
:states 'normal
@@
-990,7
+993,7
@@
Not just how I do git, but /the/ way to do git.
#+begin_src emacs-lisp
(use-package magit
#+begin_src emacs-lisp
(use-package magit
- :defer
2
+ :defer
1
:general (amin--leader-keys "g s" 'magit-status)
:bind ("s-g" . magit-status)
:config
:general (amin--leader-keys "g s" 'magit-status)
:bind ("s-g" . magit-status)
:config
@@
-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
@@
-1286,7
+1290,7
@@
TODO: break this giant source block down into individual org sections.
#+begin_src emacs-lisp
(use-package company
#+begin_src emacs-lisp
(use-package company
- :defer
2
+ :defer
1
:bind
(:map company-active-map
([tab] . company-complete-common-or-cycle)
:bind
(:map company-active-map
([tab] . company-complete-common-or-cycle)
@@
-1799,7
+1803,7
@@
Emacs package that displays available keybindings in popup
#+begin_src emacs-lisp
(use-package projectile
#+begin_src emacs-lisp
(use-package projectile
- :defer
2
+ :defer
t
:bind-keymap ("C-c p" . projectile-command-map)
:config
(projectile-mode)
:bind-keymap ("C-c p" . projectile-command-map)
:config
(projectile-mode)
@@
-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