mirror of
https://github.com/correl/dotfiles.git
synced 2024-11-21 19:18:41 +00:00
[emacs] Add keypression for casting keystrokes
This commit is contained in:
parent
a603cc41a9
commit
d3fc1cd29d
2 changed files with 15 additions and 0 deletions
|
@ -1449,6 +1449,20 @@ Manage background services
|
|||
#'prodigy-start-service
|
||||
(-concat (prodigy-services-tagged-with 'autostart))))
|
||||
#+end_src
|
||||
** Screen Sharing
|
||||
*** Showing keypresses
|
||||
#+begin_src emacs-lisp
|
||||
(use-package! keypression
|
||||
:commands (keypression-mode)
|
||||
:bind (("C-c t k" . keypression-mode))
|
||||
:config
|
||||
(setq keypression-fade-out-delay 2.0
|
||||
keypression-cast-command-name t
|
||||
keypression-combine-same-keystrokes t
|
||||
keypression-combine-format "%s (%d times)"
|
||||
keypression-y-offset 100
|
||||
keypression-font-face-attribute '(:height 400 :weight bold)))
|
||||
#+end_src
|
||||
** UUID Generation
|
||||
#+begin_src emacs-lisp
|
||||
(use-package! uuidgen
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
(package! kanji-glasses-mode :recipe (:host github :repo "correl/kanji-glasses-mode"))
|
||||
(package! kanji-mode)
|
||||
(package! kerl :recipe (:host github :repo "correl/kerl.el"))
|
||||
(package! keypression)
|
||||
(package! kubernetes)
|
||||
(package! kubernetes-tramp)
|
||||
(package! migemo)
|
||||
|
|
Loading…
Reference in a new issue