General cleanup & refactor
This commit is contained in:
parent
505d515dd8
commit
85bde34f84
4 changed files with 10 additions and 12 deletions
|
@ -9,7 +9,7 @@
|
|||
|
||||
|
||||
;;
|
||||
;;
|
||||
;; Config
|
||||
;;
|
||||
|
||||
(defvar +email--accounts nil)
|
||||
|
@ -264,8 +264,8 @@
|
|||
(setq org-mu4e-link-query-in-headers-mode nil
|
||||
org-mu4e-convert-to-html t)
|
||||
|
||||
;; Only render to html once. Without this, it would continue to do so, if the
|
||||
;; first send failed for whatever reason.
|
||||
;; Only render to html once. If the first send fails for whatever reason,
|
||||
;; org-mu4e would do so each time you try again.
|
||||
(add-hook! 'message-send-hook
|
||||
(setq-local org-mu4e-convert-to-html nil)))
|
||||
|
||||
|
|
|
@ -99,9 +99,11 @@
|
|||
|
||||
(setq-default
|
||||
org-export-coding-system 'utf-8
|
||||
org-todo-keywords '((sequence "[ ](t)" "[-](p)" "[?](m)" "|" "[X](d)")
|
||||
(sequence "TODO(T)" "|" "DONE(D)")
|
||||
(sequence "IDEA(i)" "NEXT(n)" "ACTIVE(a)" "WAITING(w)" "LATER(l)" "|" "CANCELLED(c)"))
|
||||
org-todo-keywords
|
||||
'((sequence "[ ](t)" "[-](p)" "[?](m)" "|" "[X](d)")
|
||||
(sequence "TODO(T)" "|" "DONE(D)")
|
||||
(sequence "IDEA(i)" "NEXT(n)" "ACTIVE(a)" "WAITING(w)" "LATER(l)"
|
||||
"|" "CANCELLED(c)"))
|
||||
|
||||
;; Appearance
|
||||
outline-blank-line t
|
||||
|
@ -109,7 +111,6 @@
|
|||
org-adapt-indentation nil
|
||||
org-cycle-separator-lines 1
|
||||
org-cycle-include-plain-lists t
|
||||
;; org-ellipsis " ... "
|
||||
org-ellipsis " "
|
||||
org-entities-user '(("flat" "\\flat" nil "" "" "266D" "♭")
|
||||
("sharp" "\\sharp" nil "" "" "266F" "♯"))
|
||||
|
|
|
@ -11,5 +11,3 @@
|
|||
(package! ob-sql-mode)
|
||||
(package! ob-translate)
|
||||
;; (package! ox-pandox)
|
||||
;; (package! org-bullets)
|
||||
|
||||
|
|
|
@ -9,9 +9,8 @@
|
|||
`(lambda () (interactive)
|
||||
(let ((default-directory ,path))
|
||||
(call-interactively
|
||||
',(if project-p
|
||||
(command-remapping 'projectile-find-file)
|
||||
(command-remapping 'find-file))))))
|
||||
',(command-remapping
|
||||
(if project-p 'projectile-find-file) 'find-file)))))
|
||||
|
||||
(map!
|
||||
[remap evil-jump-to-tag] 'projectile-find-tag
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue