|
@@ -26,7 +26,7 @@ suffers, so we have Fira Mono to fall back on.
|
|
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
(setq doom-font (font-spec :family "FuraCode Nerd Font Mono" :size 12))
|
|
|
-(setq doom-big-font (font-spec :family "FuraCode Nerd Font Mono" :size 18))
|
|
|
+(setq doom-big-font (font-spec :family "FuraCode Nerd Font Mono" :size 17))
|
|
|
(setq doom-theme 'kaolin-aurora)
|
|
|
#+END_SRC
|
|
|
|
|
@@ -121,7 +121,7 @@ it's source.
|
|
|
Right now, just make sure I can connect to my local Mopidy server via MPDel.
|
|
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
-(setq libmpdel-hostname "mopidy.local")
|
|
|
+(setq libmpdel-hostname "mpd.unbl.ink")
|
|
|
|
|
|
(defun mpdel-playlist-play ()
|
|
|
"Start playing the song at point."
|
|
@@ -139,13 +139,20 @@ Right now, just make sure I can connect to my local Mopidy server via MPDel.
|
|
|
:desc "MPD Previous track" "p" #'libmpdel-playback-previous))
|
|
|
#+END_SRC
|
|
|
* RSS
|
|
|
+** Feeds
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
;; app/rss
|
|
|
(add-hook! 'elfeed-show-mode-hook (text-scale-set 1.5))
|
|
|
|
|
|
(setq rmh-elfeed-org-files (list "~/org/elfeed.org")
|
|
|
elfeed-search-filter "@1-week-ago +unread ")
|
|
|
+#+END_SRC
|
|
|
+** Elfeed configuration
|
|
|
+#+BEGIN_SRC emacs-lisp
|
|
|
+(run-with-timer 0 (* 30 60) 'elfeed-update)
|
|
|
|
|
|
+(setq httpd-host "0.0.0.0")
|
|
|
+(setq httpd-port 10000)
|
|
|
#+END_SRC
|
|
|
* Niceties
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
@@ -392,13 +399,6 @@ There's gotta be a way to get the token out of password-store for this.
|
|
|
:desc "Update Mastodon timeline" "u" #'mastodon-tl--update
|
|
|
:desc "Toot to Mastodon" "t" #'mastodon-toot))
|
|
|
#+END_SRC
|
|
|
-* Elfeed
|
|
|
-#+BEGIN_SRC emacs-lisp
|
|
|
-(run-with-timer 0 (* 30 60) 'elfeed-update)
|
|
|
-
|
|
|
-(setq httpd-host "0.0.0.0")
|
|
|
-(setq httpd-port 10000)
|
|
|
-#+END_SRC
|
|
|
* Unprocessed
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
(load! "beancount")
|