Skip to content

Commit f599ff3

Browse files
committed
feat: enable lte for markdown as well
1 parent afd3779 commit f599ff3

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

init.org

+11-10
Original file line numberDiff line numberDiff line change
@@ -1331,6 +1331,15 @@ Display page breaks as a horizontal line.
13311331
(setq valign-fancy-bar t))
13321332
#+end_src
13331333

1334+
Truncate large tables.
1335+
#+begin_src emacs-lisp :tangle yes
1336+
(use-package lte
1337+
:ensure t
1338+
:hook
1339+
((markdown-mode-hook
1340+
org-mode-hook) . lte-truncate-table-mode))
1341+
#+end_src
1342+
13341343
*** Visible
13351344
Making invisible text temporarily visible.
13361345
#+begin_src emacs-lisp :tangle yes
@@ -2742,15 +2751,6 @@ Presentation mode.
27422751
(global-hide-fringes-mode 0)))
27432752
#+end_src
27442753

2745-
**** lte
2746-
Truncate long tables.
2747-
#+begin_src emacs-lisp :tangle yes
2748-
(use-package lte
2749-
:ensure t
2750-
:hook
2751-
(org-mode-hook . lte-truncate-table-mode))
2752-
#+end_src
2753-
27542754
**** org-contrib
27552755
Unmaintained add-ons for org-mode, in this configuration =org-eldoc= is used.
27562756
#+begin_src emacs-lisp :tangle yes
@@ -4101,7 +4101,7 @@ I am trying to reduce the amount of custom keybindings, therefore I present a ta
41014101
|------------+-------------|
41024102
| =M-= | =C-[= |
41034103
| =TAB= | =C-i= |
4104-
| =RET= | =C-m= |
4104+
| =RET= | =C-m= |
41054105

41064106
*** Commands
41074107
| Keybinding | Function | Description |
@@ -4324,6 +4324,7 @@ I am trying to reduce the amount of custom keybindings, therefore I present a ta
43244324
- kotlin-mode
43254325
- kubernetes
43264326
- ligature
4327+
- lte
43274328
- mermaid-mode
43284329
- minitest
43294330
- nginx-mode

0 commit comments

Comments
 (0)