Skip to content

Commit afd3779

Browse files
committed
feat: handle long tables in org-mode
1 parent 6304b4e commit afd3779

File tree

3 files changed

+32
-0
lines changed

3 files changed

+32
-0
lines changed

init.org

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2742,6 +2742,15 @@ Presentation mode.
27422742
(global-hide-fringes-mode 0)))
27432743
#+end_src
27442744

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+
27452754
**** org-contrib
27462755
Unmaintained add-ons for org-mode, in this configuration =org-eldoc= is used.
27472756
#+begin_src emacs-lisp :tangle yes

lock/flake.lock

Lines changed: 17 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lock/flake.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -510,6 +510,12 @@
510510
repo = "log4e";
511511
type = "github";
512512
};
513+
lte = {
514+
flake = false;
515+
owner = "fredericgiquel";
516+
repo = "lte.el";
517+
type = "github";
518+
};
513519
magit = {
514520
flake = false;
515521
owner = "magit";

0 commit comments

Comments
 (0)