rice

personal dot files and scripts for linux and macOS
Log | Files | Refs | README | LICENSE

init-local.el (1426B)


      1 (when (eq system-type 'darwin)
      2   (resize-small)
      3   (mjf/center-window)
      4   (exec-path-from-shell-initialize))
      5 
      6 (use-package modus-themes
      7               :config
      8               (setq modus-themes-mode-line '(4 borderless))
      9               (load-theme 'modus-vivendi))
     10 
     11 (setq elfeed-feeds
     12       `("https://thume.ca/atom.xml"
     13         "https://lukesmith.xyz/rss.xml"
     14         "https://nullprogram.com/feed/"
     15         ("https://notrelated.libsyn.com/rss" podcast)
     16         ("http://mfeller.io/rss.xml" personal)
     17         ("https://planet.emacslife.com/atom.xml" emacs community)
     18         ,(mjf/yt-playlist-feed "PLkG-zhy1pVumXUC8e1vdfTciqZgNcpvdq")
     19         ,(mjf/yt-channel-feed "UCBa659QWEk1AI4Tg--mrJ2A") ; Tom Scott
     20         ,(mjf/yt-channel-feed "UC0uTPqBCFIpZxlz_Lv1tk_g")
     21         ,(mjf/yt-channel-feed "UCdJdEguB1F1CiYe7OEi3SBg") ; Jon Tron
     22         ,(mjf/yt-channel-feed "UCEOXxzW2vU0P-0THehuIIeg") ; Captian D
     23         ,(mjf/yt-channel-feed "UCrTNhL_yO3tPTdQ5XgmmWjA") ; Red Letter Media
     24         ,(mjf/yt-channel-feed "UCgXiTWrFg05fTPfw1YLb5Ug") ; Triforce!
     25         ))
     26 
     27 (mjf/initialize-personal-email)
     28 (setq user-mail-address "mark@mfeller.io")
     29 (setq mml-secure-smime-sign-with-sender "mark@mfeller.io")
     30 (setq message-signature-file "~/.local/share/emacs/signature")
     31 
     32 (when (eq system-type 'darwin)
     33   (setq user-mail-address "mfeller@squareup.com")
     34   (setq mml-secure-smime-sign-with-sender "mfeller@squareup.com"))
     35 
     36 (provide 'init-local)