qrencode
This commit is contained in:
parent
93739a0591
commit
fda77b2269
|
@ -47,6 +47,7 @@
|
||||||
- [[#pass][Pass]]
|
- [[#pass][Pass]]
|
||||||
- [[#matrixement][Matrix/Ement]]
|
- [[#matrixement][Matrix/Ement]]
|
||||||
- [[#activitywatch][ActivityWatch]]
|
- [[#activitywatch][ActivityWatch]]
|
||||||
|
- [[#qrencode][qrencode]]
|
||||||
- [[#mybible][MyBible]]
|
- [[#mybible][MyBible]]
|
||||||
- [[#performance][Performance]]
|
- [[#performance][Performance]]
|
||||||
- [[#logging][Logging]]
|
- [[#logging][Logging]]
|
||||||
|
@ -3066,6 +3067,11 @@ I like to track my time with ActivityWatch so I can notice and kill bad habits.
|
||||||
(global-activity-watch-mode -1)))
|
(global-activity-watch-mode -1)))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
** qrencode
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package qrencode)
|
||||||
|
#+end_src
|
||||||
|
|
||||||
** MyBible
|
** MyBible
|
||||||
MyBible is going to be my minor mode for creating and using a bible app within Emacs. Let's see if we can't make it work.
|
MyBible is going to be my minor mode for creating and using a bible app within Emacs. Let's see if we can't make it work.
|
||||||
#+begin_src emacs-lisp :tangle no
|
#+begin_src emacs-lisp :tangle no
|
||||||
|
|
2
init.el
2
init.el
|
@ -2206,6 +2206,8 @@ interfere with the default `bongo-playlist-buffer'."
|
||||||
(chris/leader-keys
|
(chris/leader-keys
|
||||||
"oM" 'ement-list-rooms))
|
"oM" 'ement-list-rooms))
|
||||||
|
|
||||||
|
(use-package qrencode)
|
||||||
|
|
||||||
;; Reduce rendering/line scan work for Emacs by not rendering cursors or regions
|
;; Reduce rendering/line scan work for Emacs by not rendering cursors or regions
|
||||||
;; in non-focused windows.
|
;; in non-focused windows.
|
||||||
(setq-default cursor-in-non-selected-windows nil)
|
(setq-default cursor-in-non-selected-windows nil)
|
||||||
|
|
Loading…
Reference in a new issue