adding a little bit of changes for ui
This commit is contained in:
parent
80610b8c3a
commit
e55f0300ca
98
README.org
98
README.org
|
@ -14,6 +14,7 @@
|
||||||
- [[#undo-tree][Undo-Tree]]
|
- [[#undo-tree][Undo-Tree]]
|
||||||
- [[#undo-fu][Undo-Fu]]
|
- [[#undo-fu][Undo-Fu]]
|
||||||
- [[#better-ui][Better UI]]
|
- [[#better-ui][Better UI]]
|
||||||
|
- [[#eww][EWW]]
|
||||||
- [[#completion][Completion]]
|
- [[#completion][Completion]]
|
||||||
- [[#yasnippet][YASnippet]]
|
- [[#yasnippet][YASnippet]]
|
||||||
- [[#tempel][Tempel]]
|
- [[#tempel][Tempel]]
|
||||||
|
@ -116,8 +117,8 @@ In order to have this config work on both my desktop with regular joe-schmoe mon
|
||||||
"Set the frame to be transparent on Wayland compositors"
|
"Set the frame to be transparent on Wayland compositors"
|
||||||
(if (string-search "wayland" x-display-name)
|
(if (string-search "wayland" x-display-name)
|
||||||
'((set-frame-parameter (selected-frame) 'alpha '(100 . 100))
|
'((set-frame-parameter (selected-frame) 'alpha '(100 . 100))
|
||||||
(add-to-list 'default-frame-alist '(alpha . (80 . 80)))
|
(add-to-list 'default-frame-alist '(alpha . (100 . 100)))
|
||||||
(add-to-list 'initial-frame-alist '(alpha . (80 . 80))))))
|
(add-to-list 'initial-frame-alist '(alpha . (100 . 100))))))
|
||||||
|
|
||||||
(if (daemonp)
|
(if (daemonp)
|
||||||
(add-hook 'after-make-frame-functions
|
(add-hook 'after-make-frame-functions
|
||||||
|
@ -139,8 +140,16 @@ Then let's make sure line-numbers are relative and on. And let's turn on visual-
|
||||||
#+RESULTS:
|
#+RESULTS:
|
||||||
: t
|
: t
|
||||||
|
|
||||||
Here are some ui changes I pulled from Doom Emacs
|
I'm adding a terminal to my workflow because sometimes that's better for me.
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
(defun on-frame-open (frame)
|
||||||
|
(if (not (display-graphic-p frame))
|
||||||
|
(set-face-background 'default "unspecified-bg" frame)))
|
||||||
|
(add-hook 'after-make-frame-functions 'on-frame-open)
|
||||||
|
#+end_src
|
||||||
|
|
||||||
|
Here are some ui changes I pulled from Doom Emacs
|
||||||
|
,#+begin_src emacs-lisp
|
||||||
|
|
||||||
;; always avoid GUI
|
;; always avoid GUI
|
||||||
(setq use-dialog-box nil)
|
(setq use-dialog-box nil)
|
||||||
|
@ -499,6 +508,7 @@ Let's start by creating a self contained function of what I'd like started on ev
|
||||||
(display-line-numbers-mode -1)
|
(display-line-numbers-mode -1)
|
||||||
(variable-pitch-mode -1)
|
(variable-pitch-mode -1)
|
||||||
(toggle-truncate-lines +1)
|
(toggle-truncate-lines +1)
|
||||||
|
(evil-normal-state)
|
||||||
(setq visual-fill-column-width 120
|
(setq visual-fill-column-width 120
|
||||||
visual-fill-column-center-text t))
|
visual-fill-column-center-text t))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
@ -517,7 +527,7 @@ Part of this config includes some special capture templates for my work as a you
|
||||||
org-fontify-quote-and-verse-blocks t
|
org-fontify-quote-and-verse-blocks t
|
||||||
org-src-preserve-indentation t
|
org-src-preserve-indentation t
|
||||||
org-src-window-setup 'other-window
|
org-src-window-setup 'other-window
|
||||||
org-agenda-current-time-string "now >>>>>>>>>>>>>")
|
org-agenda-current-time-string "⭠ now ────────────────")
|
||||||
|
|
||||||
(add-hook 'org-mode-hook 'chris/org-mode-setup)
|
(add-hook 'org-mode-hook 'chris/org-mode-setup)
|
||||||
|
|
||||||
|
@ -668,6 +678,7 @@ Part of this config includes some special capture templates for my work as a you
|
||||||
"gC" 'chris/org-columns-view
|
"gC" 'chris/org-columns-view
|
||||||
"ge" 'org-edit-src-code
|
"ge" 'org-edit-src-code
|
||||||
"gr" 'revert-buffer
|
"gr" 'revert-buffer
|
||||||
|
"ze" 'org-emphasize
|
||||||
"S" 'org-schedule
|
"S" 'org-schedule
|
||||||
"t" 'org-todo)
|
"t" 'org-todo)
|
||||||
('insert org-mode-map
|
('insert org-mode-map
|
||||||
|
@ -837,8 +848,15 @@ Org-Superstar makes the stars at the beginning of the line in =org-mode= a lot p
|
||||||
*** Org Modern
|
*** Org Modern
|
||||||
#+BEGIN_SRC emacs-lisp :tangle no
|
#+BEGIN_SRC emacs-lisp :tangle no
|
||||||
(use-package org-modern
|
(use-package org-modern
|
||||||
:straight (:host github :repo "minad/org-modern"))
|
:straight (:host github :repo "minad/org-modern")
|
||||||
|
:config
|
||||||
|
|
||||||
|
(custom-set-faces
|
||||||
|
'(org-moder-tag ((t :background "#9aedfe")))
|
||||||
|
)
|
||||||
|
)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
*** Org DWIM
|
*** Org DWIM
|
||||||
I've stolen most of this code from Doom Emacs but we want to create a dwim-at-point function for Org-Mode that will fit under the =RET= key. This allows us to do a bunch of different functions depending on the context of point.
|
I've stolen most of this code from Doom Emacs but we want to create a dwim-at-point function for Org-Mode that will fit under the =RET= key. This allows us to do a bunch of different functions depending on the context of point.
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
@ -1104,6 +1122,13 @@ These two packages created by Prot are interesting to me and may help to make su
|
||||||
tabulated-list-mode-hook)))
|
tabulated-list-mode-hook)))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
** EWW
|
||||||
|
Builtin webbrowser for emacs. Trying it out as a text only browser for things.
|
||||||
|
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
|
||||||
|
#+end_src
|
||||||
|
|
||||||
** Completion
|
** Completion
|
||||||
My completion framework is a combination of packages so that everything remains seperate and lightweight.
|
My completion framework is a combination of packages so that everything remains seperate and lightweight.
|
||||||
|
|
||||||
|
@ -1708,7 +1733,7 @@ Since I like to make my window manager handle a lot of the window management, I
|
||||||
"Return non-nil if function SYM is autoloaded."
|
"Return non-nil if function SYM is autoloaded."
|
||||||
(-when-let (file-name (buffer-file-name buf))
|
(-when-let (file-name (buffer-file-name buf))
|
||||||
(setq file-name (s-chop-suffix ".gz" file-name))
|
(setq file-name (s-chop-suffix ".gz" file-name))
|
||||||
(help-fns--autoloaded-p sym)))
|
(help-fns--autoloaded-p sym file-name)))
|
||||||
|
|
||||||
(defun helpful--skip-advice (docstring)
|
(defun helpful--skip-advice (docstring)
|
||||||
"Remove mentions of advice from DOCSTRING."
|
"Remove mentions of advice from DOCSTRING."
|
||||||
|
@ -2102,9 +2127,12 @@ Ledger mode
|
||||||
(mu4e-trash-folder . "/office/Deleted Items")
|
(mu4e-trash-folder . "/office/Deleted Items")
|
||||||
(mu4e-refile-folder . "/office/Archive")
|
(mu4e-refile-folder . "/office/Archive")
|
||||||
(smtpmail-smtp-user . "chris@tfcconnection.org")
|
(smtpmail-smtp-user . "chris@tfcconnection.org")
|
||||||
|
(smtpmail-starttls-credentials . '(("smtp.office365.com" 587 nil nil)))
|
||||||
|
(smtpmail-auth-credentials . '(("smtp.office365.com" 587 "chris@tfcconnection.org" nil)))
|
||||||
|
(smtpmail-smtp-server . "smtp.office365.com")
|
||||||
(mu4e-compose-signature . "Praising God in all things,\nChris Cochrun")))
|
(mu4e-compose-signature . "Praising God in all things,\nChris Cochrun")))
|
||||||
(make-mu4e-context
|
(make-mu4e-context
|
||||||
:name "personal"
|
:name "outlook"
|
||||||
:match-func
|
:match-func
|
||||||
(lambda (msg)
|
(lambda (msg)
|
||||||
(when msg
|
(when msg
|
||||||
|
@ -2116,6 +2144,22 @@ Ledger mode
|
||||||
(mu4e-refile-folder . "/outlook/Archive")
|
(mu4e-refile-folder . "/outlook/Archive")
|
||||||
(smtpmail-smtp-user . "chris.cochrun@outlook.com")
|
(smtpmail-smtp-user . "chris.cochrun@outlook.com")
|
||||||
(mu4e-compose-signature . "Praising God in all things,\nChris Cochrun")))
|
(mu4e-compose-signature . "Praising God in all things,\nChris Cochrun")))
|
||||||
|
(make-mu4e-context
|
||||||
|
:name "personal"
|
||||||
|
:match-func
|
||||||
|
(lambda (msg)
|
||||||
|
(when msg
|
||||||
|
(string-prefix-p "/cochrun" (mu4e-message-field msg :maildir))))
|
||||||
|
:vars '((user-mail-address . "chris@cochrun.xyz")
|
||||||
|
(mu4e-sent-folder . "/cochrun/Sent/")
|
||||||
|
(mu4e-drafts-folder . "/cochrun/Drafts")
|
||||||
|
(mu4e-trash-folder . "/cochrun/Trash")
|
||||||
|
(mu4e-refile-folder . "/cochrun/Archive")
|
||||||
|
(smtpmail-smtp-user . "chris@cochrun.xyz")
|
||||||
|
(smtpmail-starttls-credentials . '(("mail.cochrun.xyz" 587 nil nil)))
|
||||||
|
(smtpmail-auth-credentials . '(("mail.cochrun.xyz" 587 "chris@cochrun.xyz" nil)))
|
||||||
|
(smtpmail-smtp-server . "mail.cochrun.xyz")
|
||||||
|
(mu4e-compose-signature . "Praising God in all things,\nChris Cochrun")))
|
||||||
(make-mu4e-context
|
(make-mu4e-context
|
||||||
:name "gmail"
|
:name "gmail"
|
||||||
:match-func
|
:match-func
|
||||||
|
@ -2127,20 +2171,17 @@ Ledger mode
|
||||||
(smtpmail-smtp-user . "ccochrun21@gmail.com")
|
(smtpmail-smtp-user . "ccochrun21@gmail.com")
|
||||||
(mu4e-compose-signature . "Praising God in all things,\nChris Cochrun")))))
|
(mu4e-compose-signature . "Praising God in all things,\nChris Cochrun")))))
|
||||||
|
|
||||||
;; Add the ability to send email for o365
|
;; Add the ability to send email
|
||||||
(setq message-send-mail-function 'smtpmail-send-it
|
(setq message-send-mail-function 'smtpmail-send-it
|
||||||
starttls-use-gnutls t
|
starttls-use-gnutls t
|
||||||
smtpmail-starttls-credentials '(("smtp.office365.com" 587 nil nil))
|
smtpmail-default-smtp-server "mail.cochrun.xyz"
|
||||||
smtpmail-auth-credentials
|
|
||||||
'(("smtp.office365.com" 587 "chris@tfcconnection.org" nil))
|
|
||||||
smtpmail-default-smtp-server "smtp.office365.com"
|
|
||||||
smtpmail-smtp-server "smtp.office365.com"
|
|
||||||
smtpmail-smtp-service 587)
|
smtpmail-smtp-service 587)
|
||||||
|
|
||||||
;; shortcuts in the jumplist by pressing "J" in the mu4e buffer
|
;; shortcuts in the jumplist by pressing "J" in the mu4e buffer
|
||||||
(setq mu4e-maildir-shortcuts
|
(setq mu4e-maildir-shortcuts
|
||||||
'((:maildir "/office/Archive" :key ?a)
|
'((:maildir "/office/Archive" :key ?a)
|
||||||
(:maildir "/office/INBOX" :key ?i)
|
(:maildir "/office/INBOX" :key ?i)
|
||||||
|
(:maildir "/cochrun/INBOX" :key ?p)
|
||||||
(:maildir "/outlook/INBOX" :key ?l)
|
(:maildir "/outlook/INBOX" :key ?l)
|
||||||
(:maildir "/office/Junk Email" :key ?j)
|
(:maildir "/office/Junk Email" :key ?j)
|
||||||
(:maildir "/office/INBOX/Website Forms" :key ?f)
|
(:maildir "/office/INBOX/Website Forms" :key ?f)
|
||||||
|
@ -2571,6 +2612,35 @@ interfere with the default `bongo-playlist-buffer'."
|
||||||
(propertize title 'face 'italic)
|
(propertize title 'face 'italic)
|
||||||
(propertize bongo-pl 'face 'bold))))
|
(propertize bongo-pl 'face 'bold))))
|
||||||
|
|
||||||
|
(defun chris/elfeed-bongo-insert-link ()
|
||||||
|
"Inserts the hovered link into bongo for playback in mpv"
|
||||||
|
(interactive)
|
||||||
|
(let* ((link (shr--current-link-region))
|
||||||
|
(entry elfeed-show-entry)
|
||||||
|
(title (elfeed-entry-title entry))
|
||||||
|
(url (get-text-property (point) 'shr-url))
|
||||||
|
(bongo-pl chris/elfeed-bongo-playlist)
|
||||||
|
(buffer (get-buffer-create bongo-pl)))
|
||||||
|
(message "url is %s" url)
|
||||||
|
(message "title is %s" title)
|
||||||
|
(unless (bongo-playlist-buffer)
|
||||||
|
(bongo-playlist-buffer))
|
||||||
|
(display-buffer buffer)
|
||||||
|
(with-current-buffer buffer
|
||||||
|
(when (not (bongo-playlist-buffer-p))
|
||||||
|
(bongo-playlist-mode)
|
||||||
|
(setq-local bongo-library-buffer (get-buffer "*elfeed-search*"))
|
||||||
|
(setq-local bongo-enabled-backends '(mpv))
|
||||||
|
(bongo-progressive-playback-mode))
|
||||||
|
(goto-char (point-max))
|
||||||
|
(bongo-insert-uri url (format "%s ==> %s" title url))
|
||||||
|
(let ((inhibit-read-only t))
|
||||||
|
(delete-duplicate-lines (point-min) (point-max)))
|
||||||
|
(bongo-recenter))
|
||||||
|
(message "Enqueued item “%s” in %s"
|
||||||
|
(propertize title 'face 'italic)
|
||||||
|
(propertize bongo-pl 'face 'bold))))
|
||||||
|
|
||||||
(defun chris/elfeed-bongo-switch-to-playlist ()
|
(defun chris/elfeed-bongo-switch-to-playlist ()
|
||||||
(interactive)
|
(interactive)
|
||||||
(let* ((bongo-pl chris/elfeed-bongo-playlist)
|
(let* ((bongo-pl chris/elfeed-bongo-playlist)
|
||||||
|
@ -2595,6 +2665,8 @@ interfere with the default `bongo-playlist-buffer'."
|
||||||
(add-hook 'elfeed-search-mode-hook 'chris/elfeed-ui-setup)
|
(add-hook 'elfeed-search-mode-hook 'chris/elfeed-ui-setup)
|
||||||
(add-hook 'elfeed-show-mode-hook 'chris/elfeed-show-ui-setup)
|
(add-hook 'elfeed-show-mode-hook 'chris/elfeed-show-ui-setup)
|
||||||
|
|
||||||
|
(setq shr-use-colors nil)
|
||||||
|
|
||||||
:general
|
:general
|
||||||
(chris/leader-keys
|
(chris/leader-keys
|
||||||
:states 'normal
|
:states 'normal
|
||||||
|
|
106
init.el
106
init.el
|
@ -40,8 +40,8 @@
|
||||||
"Set the frame to be transparent on Wayland compositors"
|
"Set the frame to be transparent on Wayland compositors"
|
||||||
(if (string-search "wayland" x-display-name)
|
(if (string-search "wayland" x-display-name)
|
||||||
'((set-frame-parameter (selected-frame) 'alpha '(100 . 100))
|
'((set-frame-parameter (selected-frame) 'alpha '(100 . 100))
|
||||||
(add-to-list 'default-frame-alist '(alpha . (80 . 80)))
|
(add-to-list 'default-frame-alist '(alpha . (100 . 100)))
|
||||||
(add-to-list 'initial-frame-alist '(alpha . (80 . 80))))))
|
(add-to-list 'initial-frame-alist '(alpha . (100 . 100))))))
|
||||||
|
|
||||||
(if (daemonp)
|
(if (daemonp)
|
||||||
(add-hook 'after-make-frame-functions
|
(add-hook 'after-make-frame-functions
|
||||||
|
@ -55,18 +55,10 @@
|
||||||
(add-hook 'prog-mode-hook (display-line-numbers-mode +1))
|
(add-hook 'prog-mode-hook (display-line-numbers-mode +1))
|
||||||
(global-visual-line-mode +1)
|
(global-visual-line-mode +1)
|
||||||
|
|
||||||
;; always avoid GUI
|
(defun on-frame-open (frame)
|
||||||
(setq use-dialog-box nil)
|
(if (not (display-graphic-p frame))
|
||||||
;; Don't display floating tooltips; display their contents in the echo-area,
|
(set-face-background 'default "unspecified-bg" frame)))
|
||||||
;; because native tooltips are ugly.
|
(add-hook 'after-make-frame-functions 'on-frame-open)
|
||||||
(when (bound-and-true-p tooltip-mode)
|
|
||||||
(tooltip-mode -1))
|
|
||||||
;; ...especially on linux
|
|
||||||
(setq x-gtk-use-system-tooltips nil)
|
|
||||||
|
|
||||||
;; Favor vertical splits over horizontal ones. Screens are usually wide.
|
|
||||||
(setq split-width-threshold 160
|
|
||||||
split-height-threshold nil)
|
|
||||||
|
|
||||||
(setq doc-view-resolution 192)
|
(setq doc-view-resolution 192)
|
||||||
|
|
||||||
|
@ -323,6 +315,7 @@
|
||||||
(display-line-numbers-mode -1)
|
(display-line-numbers-mode -1)
|
||||||
(variable-pitch-mode -1)
|
(variable-pitch-mode -1)
|
||||||
(toggle-truncate-lines +1)
|
(toggle-truncate-lines +1)
|
||||||
|
(evil-normal-state)
|
||||||
(setq visual-fill-column-width 120
|
(setq visual-fill-column-width 120
|
||||||
visual-fill-column-center-text t))
|
visual-fill-column-center-text t))
|
||||||
|
|
||||||
|
@ -336,7 +329,7 @@
|
||||||
org-fontify-quote-and-verse-blocks t
|
org-fontify-quote-and-verse-blocks t
|
||||||
org-src-preserve-indentation t
|
org-src-preserve-indentation t
|
||||||
org-src-window-setup 'other-window
|
org-src-window-setup 'other-window
|
||||||
org-agenda-current-time-string "now >>>>>>>>>>>>>")
|
org-agenda-current-time-string "⭠ now ────────────────")
|
||||||
|
|
||||||
(add-hook 'org-mode-hook 'chris/org-mode-setup)
|
(add-hook 'org-mode-hook 'chris/org-mode-setup)
|
||||||
|
|
||||||
|
@ -487,6 +480,7 @@
|
||||||
"gC" 'chris/org-columns-view
|
"gC" 'chris/org-columns-view
|
||||||
"ge" 'org-edit-src-code
|
"ge" 'org-edit-src-code
|
||||||
"gr" 'revert-buffer
|
"gr" 'revert-buffer
|
||||||
|
"ze" 'org-emphasize
|
||||||
"S" 'org-schedule
|
"S" 'org-schedule
|
||||||
"t" 'org-todo)
|
"t" 'org-todo)
|
||||||
('insert org-mode-map
|
('insert org-mode-map
|
||||||
|
@ -808,6 +802,8 @@ If on a:
|
||||||
(use-package toc-org
|
(use-package toc-org
|
||||||
:after org)
|
:after org)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
(use-package vertico
|
(use-package vertico
|
||||||
:init
|
:init
|
||||||
(vertico-mode)
|
(vertico-mode)
|
||||||
|
@ -1204,7 +1200,7 @@ targets."
|
||||||
"Return non-nil if function SYM is autoloaded."
|
"Return non-nil if function SYM is autoloaded."
|
||||||
(-when-let (file-name (buffer-file-name buf))
|
(-when-let (file-name (buffer-file-name buf))
|
||||||
(setq file-name (s-chop-suffix ".gz" file-name))
|
(setq file-name (s-chop-suffix ".gz" file-name))
|
||||||
(help-fns--autoloaded-p sym)))
|
(help-fns--autoloaded-p sym file-name)))
|
||||||
|
|
||||||
(defun helpful--skip-advice (docstring)
|
(defun helpful--skip-advice (docstring)
|
||||||
"Remove mentions of advice from DOCSTRING."
|
"Remove mentions of advice from DOCSTRING."
|
||||||
|
@ -1445,9 +1441,12 @@ targets."
|
||||||
(mu4e-trash-folder . "/office/Deleted Items")
|
(mu4e-trash-folder . "/office/Deleted Items")
|
||||||
(mu4e-refile-folder . "/office/Archive")
|
(mu4e-refile-folder . "/office/Archive")
|
||||||
(smtpmail-smtp-user . "chris@tfcconnection.org")
|
(smtpmail-smtp-user . "chris@tfcconnection.org")
|
||||||
|
(smtpmail-starttls-credentials . '(("smtp.office365.com" 587 nil nil)))
|
||||||
|
(smtpmail-auth-credentials . '(("smtp.office365.com" 587 "chris@tfcconnection.org" nil)))
|
||||||
|
(smtpmail-smtp-server . "smtp.office365.com")
|
||||||
(mu4e-compose-signature . "Praising God in all things,\nChris Cochrun")))
|
(mu4e-compose-signature . "Praising God in all things,\nChris Cochrun")))
|
||||||
(make-mu4e-context
|
(make-mu4e-context
|
||||||
:name "personal"
|
:name "outlook"
|
||||||
:match-func
|
:match-func
|
||||||
(lambda (msg)
|
(lambda (msg)
|
||||||
(when msg
|
(when msg
|
||||||
|
@ -1459,6 +1458,22 @@ targets."
|
||||||
(mu4e-refile-folder . "/outlook/Archive")
|
(mu4e-refile-folder . "/outlook/Archive")
|
||||||
(smtpmail-smtp-user . "chris.cochrun@outlook.com")
|
(smtpmail-smtp-user . "chris.cochrun@outlook.com")
|
||||||
(mu4e-compose-signature . "Praising God in all things,\nChris Cochrun")))
|
(mu4e-compose-signature . "Praising God in all things,\nChris Cochrun")))
|
||||||
|
(make-mu4e-context
|
||||||
|
:name "personal"
|
||||||
|
:match-func
|
||||||
|
(lambda (msg)
|
||||||
|
(when msg
|
||||||
|
(string-prefix-p "/cochrun" (mu4e-message-field msg :maildir))))
|
||||||
|
:vars '((user-mail-address . "chris@cochrun.xyz")
|
||||||
|
(mu4e-sent-folder . "/cochrun/Sent/")
|
||||||
|
(mu4e-drafts-folder . "/cochrun/Drafts")
|
||||||
|
(mu4e-trash-folder . "/cochrun/Trash")
|
||||||
|
(mu4e-refile-folder . "/cochrun/Archive")
|
||||||
|
(smtpmail-smtp-user . "chris@cochrun.xyz")
|
||||||
|
(smtpmail-starttls-credentials . '(("mail.cochrun.xyz" 587 nil nil)))
|
||||||
|
(smtpmail-auth-credentials . '(("mail.cochrun.xyz" 587 "chris@cochrun.xyz" nil)))
|
||||||
|
(smtpmail-smtp-server . "mail.cochrun.xyz")
|
||||||
|
(mu4e-compose-signature . "Praising God in all things,\nChris Cochrun")))
|
||||||
(make-mu4e-context
|
(make-mu4e-context
|
||||||
:name "gmail"
|
:name "gmail"
|
||||||
:match-func
|
:match-func
|
||||||
|
@ -1470,20 +1485,17 @@ targets."
|
||||||
(smtpmail-smtp-user . "ccochrun21@gmail.com")
|
(smtpmail-smtp-user . "ccochrun21@gmail.com")
|
||||||
(mu4e-compose-signature . "Praising God in all things,\nChris Cochrun")))))
|
(mu4e-compose-signature . "Praising God in all things,\nChris Cochrun")))))
|
||||||
|
|
||||||
;; Add the ability to send email for o365
|
;; Add the ability to send email
|
||||||
(setq message-send-mail-function 'smtpmail-send-it
|
(setq message-send-mail-function 'smtpmail-send-it
|
||||||
starttls-use-gnutls t
|
starttls-use-gnutls t
|
||||||
smtpmail-starttls-credentials '(("smtp.office365.com" 587 nil nil))
|
smtpmail-default-smtp-server "mail.cochrun.xyz"
|
||||||
smtpmail-auth-credentials
|
|
||||||
'(("smtp.office365.com" 587 "chris@tfcconnection.org" nil))
|
|
||||||
smtpmail-default-smtp-server "smtp.office365.com"
|
|
||||||
smtpmail-smtp-server "smtp.office365.com"
|
|
||||||
smtpmail-smtp-service 587)
|
smtpmail-smtp-service 587)
|
||||||
|
|
||||||
;; shortcuts in the jumplist by pressing "J" in the mu4e buffer
|
;; shortcuts in the jumplist by pressing "J" in the mu4e buffer
|
||||||
(setq mu4e-maildir-shortcuts
|
(setq mu4e-maildir-shortcuts
|
||||||
'((:maildir "/office/Archive" :key ?a)
|
'((:maildir "/office/Archive" :key ?a)
|
||||||
(:maildir "/office/INBOX" :key ?i)
|
(:maildir "/office/INBOX" :key ?i)
|
||||||
|
(:maildir "/cochrun/INBOX" :key ?p)
|
||||||
(:maildir "/outlook/INBOX" :key ?l)
|
(:maildir "/outlook/INBOX" :key ?l)
|
||||||
(:maildir "/office/Junk Email" :key ?j)
|
(:maildir "/office/Junk Email" :key ?j)
|
||||||
(:maildir "/office/INBOX/Website Forms" :key ?f)
|
(:maildir "/office/INBOX/Website Forms" :key ?f)
|
||||||
|
@ -1845,6 +1857,35 @@ interfere with the default `bongo-playlist-buffer'."
|
||||||
(propertize title 'face 'italic)
|
(propertize title 'face 'italic)
|
||||||
(propertize bongo-pl 'face 'bold))))
|
(propertize bongo-pl 'face 'bold))))
|
||||||
|
|
||||||
|
(defun chris/elfeed-bongo-insert-link ()
|
||||||
|
"Inserts the hovered link into bongo for playback in mpv"
|
||||||
|
(interactive)
|
||||||
|
(let* ((link (shr--current-link-region))
|
||||||
|
(entry elfeed-show-entry)
|
||||||
|
(title (elfeed-entry-title entry))
|
||||||
|
(url (get-text-property (point) 'shr-url))
|
||||||
|
(bongo-pl chris/elfeed-bongo-playlist)
|
||||||
|
(buffer (get-buffer-create bongo-pl)))
|
||||||
|
(message "url is %s" url)
|
||||||
|
(message "title is %s" title)
|
||||||
|
(unless (bongo-playlist-buffer)
|
||||||
|
(bongo-playlist-buffer))
|
||||||
|
(display-buffer buffer)
|
||||||
|
(with-current-buffer buffer
|
||||||
|
(when (not (bongo-playlist-buffer-p))
|
||||||
|
(bongo-playlist-mode)
|
||||||
|
(setq-local bongo-library-buffer (get-buffer "*elfeed-search*"))
|
||||||
|
(setq-local bongo-enabled-backends '(mpv))
|
||||||
|
(bongo-progressive-playback-mode))
|
||||||
|
(goto-char (point-max))
|
||||||
|
(bongo-insert-uri url (format "%s ==> %s" title url))
|
||||||
|
(let ((inhibit-read-only t))
|
||||||
|
(delete-duplicate-lines (point-min) (point-max)))
|
||||||
|
(bongo-recenter))
|
||||||
|
(message "Enqueued item “%s” in %s"
|
||||||
|
(propertize title 'face 'italic)
|
||||||
|
(propertize bongo-pl 'face 'bold))))
|
||||||
|
|
||||||
(defun chris/elfeed-bongo-switch-to-playlist ()
|
(defun chris/elfeed-bongo-switch-to-playlist ()
|
||||||
(interactive)
|
(interactive)
|
||||||
(let* ((bongo-pl chris/elfeed-bongo-playlist)
|
(let* ((bongo-pl chris/elfeed-bongo-playlist)
|
||||||
|
@ -1869,6 +1910,8 @@ interfere with the default `bongo-playlist-buffer'."
|
||||||
(add-hook 'elfeed-search-mode-hook 'chris/elfeed-ui-setup)
|
(add-hook 'elfeed-search-mode-hook 'chris/elfeed-ui-setup)
|
||||||
(add-hook 'elfeed-show-mode-hook 'chris/elfeed-show-ui-setup)
|
(add-hook 'elfeed-show-mode-hook 'chris/elfeed-show-ui-setup)
|
||||||
|
|
||||||
|
(setq shr-use-colors nil)
|
||||||
|
|
||||||
:general
|
:general
|
||||||
(chris/leader-keys
|
(chris/leader-keys
|
||||||
:states 'normal
|
:states 'normal
|
||||||
|
@ -2101,20 +2144,3 @@ interfere with the default `bongo-playlist-buffer'."
|
||||||
gcmh-verbose nil))
|
gcmh-verbose nil))
|
||||||
|
|
||||||
(setq warning-suppress-types '((comp)))
|
(setq warning-suppress-types '((comp)))
|
||||||
(custom-set-variables
|
|
||||||
;; custom-set-variables was added by Custom.
|
|
||||||
;; If you edit it by hand, you could mess it up, so be careful.
|
|
||||||
;; Your init file should contain only one such instance.
|
|
||||||
;; If there is more than one, they won't work right.
|
|
||||||
'(pdf-misc-print-program "/usr/bin/lpr" t)
|
|
||||||
'(pdf-misc-print-program-args '("-o media=Letter" "-o fitplot") t)
|
|
||||||
'(safe-local-variable-values
|
|
||||||
'((aggressive-indent-mode)
|
|
||||||
(projectile-project-run-cmd . "./build/bin/presenter")
|
|
||||||
(projectile-project-compilation-cmd . "cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -B build/ . && make --dir build/"))))
|
|
||||||
(custom-set-faces
|
|
||||||
;; custom-set-faces was added by Custom.
|
|
||||||
;; If you edit it by hand, you could mess it up, so be careful.
|
|
||||||
;; Your init file should contain only one such instance.
|
|
||||||
;; If there is more than one, they won't work right.
|
|
||||||
)
|
|
||||||
|
|
Loading…
Reference in a new issue