This commit is contained in:
Chris Cochrun 2023-08-21 10:07:42 -05:00
parent 3bf358f29d
commit c07c493338
4 changed files with 26 additions and 9 deletions

View file

@ -184,9 +184,9 @@ Also, real quick let's make sure that ~<escape>~ works as the same as ~<C-g>~
Let's also turn on =recentf-mode=.
#+begin_src emacs-lisp
(recentf-mode +1)
(savehist-mode +1)
(add-to-list 'savehist-additional-variables 'register-alist)
(add-to-list 'savehist-additional-variables kill-ring)
;; (savehist-mode +1)
;; (add-to-list 'savehist-additional-variables 'register-alist)
;; (add-to-list 'savehist-additional-variables kill-ring)
#+end_src
Finally this is not part of the UI but let's do this early and start the server so I can use emacsclient from my WM.
@ -834,7 +834,7 @@ Part of this config includes some special capture templates for my work as a you
"/home/chris/org/newsletter.org"
"/home/chris/org/archive.org"
"/home/chris/org/nvtfc_social_media.org"
"/home/chris/dev/church-presenter/TODO.org"
"/home/chris/dev/lumina/TODO.org"
"/home/chris/dev/tfcconnection/TODO.org"
"/home/chris/org/lessons/"
"/home/chris/org/dailies/")
@ -2478,6 +2478,9 @@ Tempel is another templating system. Also perhaps even more powerful with it's e
:general
(chris/leader-keys
"ic" 'tempel-insert)
(general-def 'insert tempel-map
"C-l" 'tempel-next
"C-h" 'tempel-previous)
)
#+END_SRC
@ -4277,6 +4280,7 @@ Matrix.el is a decent enough matrix client built in emacs. Like it.
"R" 'ement-room-send-reaction)
(chris/leader-keys
"oM" 'ement-list-rooms))
(ement-connect :uri-prefix "http://localhost:8008")
#+end_src
** Mastodon

12
init.el
View file

@ -82,9 +82,9 @@
(global-set-key (kbd "<escape>") 'keyboard-escape-quit)
(recentf-mode +1)
(savehist-mode +1)
(add-to-list 'savehist-additional-variables 'register-alist)
(add-to-list 'savehist-additional-variables kill-ring)
;; (savehist-mode +1)
;; (add-to-list 'savehist-additional-variables 'register-alist)
;; (add-to-list 'savehist-additional-variables kill-ring)
(add-to-list 'exec-path "/home/chris/bin")
@ -565,7 +565,7 @@ much faster. The hope is to also make this a faster version of imenu."
"/home/chris/org/newsletter.org"
"/home/chris/org/archive.org"
"/home/chris/org/nvtfc_social_media.org"
"/home/chris/dev/church-presenter/TODO.org"
"/home/chris/dev/lumina/TODO.org"
"/home/chris/dev/tfcconnection/TODO.org"
"/home/chris/org/lessons/"
"/home/chris/org/dailies/")
@ -1831,6 +1831,9 @@ targets."
:general
(chris/leader-keys
"ic" 'tempel-insert)
(general-def 'insert tempel-map
"C-l" 'tempel-next
"C-h" 'tempel-previous)
)
(use-package projectile
@ -3154,6 +3157,7 @@ interfere with the default `bongo-playlist-buffer'."
"R" 'ement-room-send-reaction)
(chris/leader-keys
"oM" 'ement-list-rooms))
(ement-connect :uri-prefix "http://localhost:8008")
(use-package mastodon
:config

View file

@ -1,4 +1,4 @@
;;; Automatically generated by recentf on Mon Jul 31 16:20:57 2023.
;;; Automatically generated by recentf on Tue Aug 15 12:25:24 2023.
(setq recentf-list
'(

View file

@ -85,6 +85,15 @@ org-mode
:post (progn (tempel-done) (org-edit-src-code)))
(nix "#+begin_src nix" n> r> n "#+end_src"
:post (progn (tempel-done) (org-edit-src-code)))
(hc "#+TITLE: " p n "#+DATE: " (p (format-time-string "%Y-%m-%d")) n "#+tags[]: " p n "#+featured_image: \"featured.jpg\"" n "#+description: " p n "#+summary: " p n "#+showAuthor: false
#+showAuthorsBadge: true
#+showTaxonomies: true
#+showReadingTime: true
#+showWordCount: true
#+showDate: true
#+layout: simple
#+showTableOfContents: false
")
web-mode