mirror of
https://github.com/correl/dotfiles.git
synced 2024-12-18 03:00:11 +00:00
[emacs] Add my kanji and owo overlay modes
This commit is contained in:
parent
f40425b5a6
commit
992b03e8ac
2 changed files with 24 additions and 0 deletions
|
@ -992,6 +992,20 @@ Taken from [[http://emacsredux.com/blog/2013/06/21/eval-and-replace/][Emacs Redu
|
||||||
"C-c j c" #'jira-api-create-issue-from-heading
|
"C-c j c" #'jira-api-create-issue-from-heading
|
||||||
"C-c j u" #'jira-api-update-issue-from-heading)
|
"C-c j u" #'jira-api-update-issue-from-heading)
|
||||||
#+end_src
|
#+end_src
|
||||||
|
* Kanji Mode
|
||||||
|
Minor mode for displaying Japanese characters' stroke orders.
|
||||||
|
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package! kanji-mode
|
||||||
|
:commands kanji-mode)
|
||||||
|
#+end_src
|
||||||
|
* Kanji Glasses Mode
|
||||||
|
Study kanji by overlaying hiragana readings.
|
||||||
|
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package! kanji-glasses-mode
|
||||||
|
:commands kanji-glasses-mode)
|
||||||
|
#+end_src
|
||||||
* Miscellaneous Nonsense
|
* Miscellaneous Nonsense
|
||||||
** BRING ON THE ...
|
** BRING ON THE ...
|
||||||
A silly interactive method for generating horizontal and vertical text.
|
A silly interactive method for generating horizontal and vertical text.
|
||||||
|
@ -1031,3 +1045,10 @@ S
|
||||||
(-interleave (rest upthing) (-repeat (1- (length upthing)) ?\n))
|
(-interleave (rest upthing) (-repeat (1- (length upthing)) ?\n))
|
||||||
'string)))))
|
'string)))))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
** OwO Mode
|
||||||
|
Make reading an open buffer an exercise in insanity.
|
||||||
|
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package! owo-mode
|
||||||
|
:commands owo-mode)
|
||||||
|
#+end_src
|
||||||
|
|
|
@ -6,7 +6,10 @@
|
||||||
;; (package! another-package :recipe (:host github :repo "username/repo"))
|
;; (package! another-package :recipe (:host github :repo "username/repo"))
|
||||||
;; (package! builtin-package :disable t)
|
;; (package! builtin-package :disable t)
|
||||||
|
|
||||||
|
(package! kanji-mode)
|
||||||
|
(package! kanji-glasses-mode :recipe (:host github :repo "correl/kanji-glasses-mode"))
|
||||||
(package! kerl :recipe (:host github :repo "correl/kerl.el"))
|
(package! kerl :recipe (:host github :repo "correl/kerl.el"))
|
||||||
|
(package! owo-mode :recipe (:host github :repo "correl/owo-mode"))
|
||||||
(package! ox-confluence-en :recipe (:host github :repo "correl/ox-confluence-en"))
|
(package! ox-confluence-en :recipe (:host github :repo "correl/ox-confluence-en"))
|
||||||
(package! jira-api :recipe (:host github :repo "correl/jira-api"))
|
(package! jira-api :recipe (:host github :repo "correl/jira-api"))
|
||||||
(package! ob-http)
|
(package! ob-http)
|
||||||
|
|
Loading…
Reference in a new issue