diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2020-08-09 15:41:58 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2020-08-09 15:41:58 +0100 |
commit | 7a4823d57599d4ba2fdac935c2166a453750a852 (patch) | |
tree | 84537be6b4767d44f4d594f79b672cf18bf5c545 /Emacs/.config/emacs | |
parent | d6b21a3470cea00bfe945347d4918e95039588eb (diff) | |
download | dotfiles-7a4823d57599d4ba2fdac935c2166a453750a852.tar.gz dotfiles-7a4823d57599d4ba2fdac935c2166a453750a852.tar.bz2 dotfiles-7a4823d57599d4ba2fdac935c2166a453750a852.zip |
+org pretty tables
Some eyecandy via unicode symbols to make org tables just look nicer
Diffstat (limited to 'Emacs/.config/emacs')
-rw-r--r-- | Emacs/.config/emacs/config.org | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index a199670..560e938 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -707,6 +707,13 @@ look is nice to have. (use-package org-fragtog :hook (org-mode . org-fragtog-mode)) #+END_SRC +** Org pretty tables +Make the default ASCII tables of org mode pretty with +#+BEGIN_SRC emacs-lisp +(use-package org-pretty-table-mode + :straight (org-pretty-table-mode :type git :host github :repo "Fuco1/org-pretty-table") + :hook org-mode) +#+END_SRC ** Org superstar #+BEGIN_SRC emacs-lisp (use-package org-superstar |