[emacs] Small org mode tweaks and Iosevka font

This commit is contained in:
2020-08-10 13:17:02 -04:00
parent 9a41481fd2
commit 82ad51ffab

View File

@ -8,7 +8,6 @@ My identity. Used in a handful of places in Emacs to pre-populate authorship and
(setq user-full-name "Colin Powell"
user-mail-address "colin@unbl.ink")
#+END_SRC
From a friend at [[https://discord.com/channels/406534637242810369/695450585758957609/715126265715097600][Discord]]
#+BEGIN_SRC emacs-lisp
(setq ivy-read-action-function #'ivy-hydra-read-action)
@ -19,9 +18,9 @@ I change my default theme almost as often as the weather. I tend to revert back
to Doom One most of the time, but I like the Kaolin themes, as well as Nimbus
for it's retro charm. Nimbus just doesn't look great when I'm tired though.
#+BEGIN_SRC emacs-lisp
(setq doom-font (font-spec :family "FuraCode Nerd Font Mono" :size 14 :weight 'semi-light)
(setq doom-font (font-spec :family "Iosevka" :size 12 :weight 'regular)
doom-variable-pitch-font (font-spec :family "Source Serif Pro" :size 16)
doom-big-font (font-spec :family "FuraCode Nerd Font Mono" :size 20))
doom-big-font (font-spec :family "Iosevka" :size 18))
(setq doom-theme 'doom-one)
#+END_SRC
@ -186,10 +185,12 @@ A handful of mods here clean up org mode. Line numbers dont mean much when yo
org-pretty-entities t
org-agenda-dim-blocked-tasks nil
org-log-done 'time
org-hide-emphasis-markers t
org-fontify-whole-heading-line t
org-fontify-done-headline t
org-fontify-quote-and-verse-blocks t
org-ellipsis ""
org-bullets-bullet-list '("" "" "" "")
org-capture-templates
'(("i" "Send to inbox" entry (file+headline "~/org/inbox.org" "Inbox")
"* TODO %?\n"))
@ -208,8 +209,8 @@ A handful of mods here clean up org mode. Line numbers dont mean much when yo
(setq git-gutter:disabled-modes '(org-mode image-mode)))
;; Refiling
(setq org-refile-targets '((nil :maxlevel . 9)
(org-agenda-files :maxlevel . 9)))
(setq org-refile-targets '(("~/org/inbox.org" :maxlevel . 9)
("~/gtd/someday.org" :level . 9)))
(setq org-outline-path-complete-in-steps nil) ; Refile in a single go
(setq org-refile-use-outline-path t) ; Show full paths for refiling
@ -357,7 +358,6 @@ I once used LSP, but Emacs lsp-mode is flaky as hell. It works sometimes, but ot
#+END_SRC
* Mastodon
There's gotta be a way to get the token out of password-store for this.
#+BEGIN_SRC emacs-lisp
(setq mastodon-instance-url "https://mastodon.technology")