General, minor reformatting across the board

And an offering of blood to our great lord Byte Compiler-sama.
This commit is contained in:
Henrik Lissner 2019-07-21 23:31:42 +02:00
parent 3595ff62ee
commit 060ede0e2e
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
30 changed files with 125 additions and 112 deletions

View file

@ -5,6 +5,7 @@
lsp-keep-workspace-alive nil
lsp-groovy-server-install-dir (concat doom-etc-dir "groovy-langserver/"))
(after! lsp-mode
(set-lookup-handlers! 'lsp-mode :async t
:documentation 'lsp-describe-thing-at-point

View file

@ -106,8 +106,10 @@ ensure it is built when we actually use Forge."
(def-package! magit-todos
:after magit
:config
(setq magit-todos-keyword-suffix "\\(?:([^)]+)\\)?:?")
(setq magit-todos-keyword-suffix "\\(?:([^)]+)\\)?:?") ; make colon optional
(define-key magit-todos-section-map "j" nil)
;; Warns that jT isn't bound. Well, yeah, you don't need to tell me, that was
;; on purpose ya goose.
(advice-add #'magit-todos-mode :around #'doom-shut-up-a)
(magit-todos-mode +1))