|
|
@@ -326,14 +326,15 @@ disabling the line numbers.
|
|
|
(custom-set-faces! '(org-block :extend t))
|
|
|
(add-hook 'org-mode-hook (lambda () (setq-local display-line-numbers nil))))
|
|
|
#+end_src
|
|
|
-** TODO Digraphs
|
|
|
-I kinda like this feature and want it back on C-k on Org. The current snippet is
|
|
|
-broken, I need to find the proper way to turn digraph input back on.
|
|
|
-#+begin_src emacs-lisp :tangle no
|
|
|
-(after! org
|
|
|
+** Digraphs
|
|
|
+I kinda like this feature and want it back on C-k on Org. Evil-org put its own
|
|
|
+mapping at this place so I have to hijack this key /after/ its configuration.
|
|
|
+#+begin_src emacs-lisp
|
|
|
+(after! evil-org
|
|
|
(map! :map evil-org-mode-map
|
|
|
:i "C-k" 'evil-insert-digraph))
|
|
|
#+end_src
|
|
|
+
|
|
|
** TODO Tables
|
|
|
#+begin_src emacs-lisp
|
|
|
(after! org
|