Skip to content

Commit 68433ea

Browse files
committed
feat(emacs): add org-table-highlight package and configuration
- Added `org-table-highlight` to the list of Emacs packages in Nix. - Configured `org-table-highlight-mode` in `init.org` to enable it in `org-mode` via a hook.
1 parent 31244fe commit 68433ea

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

home-manager/packages/emacs/epkgs/packages/org/default.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ with epkgs;
1919
org-ql
2020
org-sliced-images
2121
org-preview-html
22+
org-table-highlight
2223

2324
# Theme
2425
org-superstar

home-manager/programs/emacs/elisp/init.org

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4613,6 +4613,14 @@ https://github.com/ch11ng/exwm/wiki#gpg-pinentry
46134613
(with-eval-after-load 'org-preview-html
46144614
(setopt org-preview-html-viewer 'xwidget))
46154615
#+end_src
4616+
*** org-table-highlight
4617+
#+begin_src emacs-lisp :tangle yes
4618+
(autoload-if-found '(org-table-highlight-mode) "org-preview-html" nil t)
4619+
4620+
(with-eval-after-load 'org
4621+
;; hooks
4622+
(add-hook 'org-mode-hook #'org-table-highlight-mode))
4623+
#+end_src
46164624
** Theme
46174625
*** org-faces
46184626
#+begin_src emacs-lisp :tangle yes

0 commit comments

Comments
 (0)