diff options
-rw-r--r-- | config.org | 18 |
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 | |||
1760 | The problem with this package is that the default faces are pretty | 1778 | The problem with this package is that the default faces are pretty |
1761 | bad, to be honest. Let's change em. | 1779 | bad, to be honest. Let's change em. |
1762 | 1780 | ||