about summary refs log tree commit diff stats
path: root/config.org
diff options
context:
space:
mode:
authorCase Duckworth2021-01-28 12:46:44 -0600
committerCase Duckworth2021-01-28 12:46:44 -0600
commit8d310a73ba15ebdd4c77750d9fe083418d957b09 (patch)
treed6e886f7ffd2f6d55826f3c53f8e0f7b7f29ddda /config.org
parentWrap acdw-elfeed-protocol-ttrss... in with-eval-after-load (diff)
downloademacs-8d310a73ba15ebdd4c77750d9fe083418d957b09.tar.gz
emacs-8d310a73ba15ebdd4c77750d9fe083418d957b09.zip
Configure crossword
Diffstat (limited to 'config.org')
-rw-r--r--config.org18
1 files changed, 18 insertions, 0 deletions
diff --git a/config.org b/config.org index 03b927f..9a20ec5 100644 --- a/config.org +++ b/config.org
@@ -1757,6 +1757,24 @@ I love crosswords. I love Emacs. There ya go.
1757 :repo "Boruch-Baum/emacs-crossword")) 1757 :repo "Boruch-Baum/emacs-crossword"))
1758#+end_src 1758#+end_src
1759 1759
1760#+begin_src emacs-lisp :noweb-ref settings
1761 (setq-default crossword-empty-position-char "#")
1762#+end_src
1763
1764#+begin_src emacs-lisp :noweb-ref no-littering
1765 (setq-default crossword-save-path
1766 (no-littering-expand-var-file-name "crosswords/"))
1767 (unless (file-exists-p crossword-save-path)
1768 (make-directory crossword-save-path :parents))
1769#+end_src
1770
1771#+begin_src emacs-lisp :noweb-ref hooks
1772 (defun hook--setup-crossword ()
1773 (setq cursor-type 'hbar))
1774
1775 (add-hook 'crossword-mode-hook #'hook--setup-crossword)
1776#+end_src
1777
1760The problem with this package is that the default faces are pretty 1778The problem with this package is that the default faces are pretty
1761bad, to be honest. Let's change em. 1779bad, to be honest. Let's change em.
1762 1780