diff options
author | Jesús <heckyel@hyperbola.info> | 2022-10-17 04:59:24 +0800 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2022-10-17 04:59:24 +0800 |
commit | 9db58fdc7d7af6fbb152e8439e1e1ddfb5b46f19 (patch) | |
tree | 6ea06bbbb0871fc868dee002ac409713ccbda4cd /modules | |
parent | 6ffb7fccc61deeaa6f3265e1328dc69bb1ce20b0 (diff) | |
download | emacs-personal-9db58fdc7d7af6fbb152e8439e1e1ddfb5b46f19.tar.lz emacs-personal-9db58fdc7d7af6fbb152e8439e1e1ddfb5b46f19.tar.xz emacs-personal-9db58fdc7d7af6fbb152e8439e1e1ddfb5b46f19.zip |
Add graphviz
Diffstat (limited to 'modules')
-rw-r--r-- | modules/init-graphviz.el | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/modules/init-graphviz.el b/modules/init-graphviz.el new file mode 100644 index 0000000..2a4cdb7 --- /dev/null +++ b/modules/init-graphviz.el @@ -0,0 +1,20 @@ +;;; init-graphviz.el --- .Emacs Configuration -*- lexical-binding: t -*- +;;; Commentary: +;; + +;;; Code: + +;;---------------------------------------------------------------------------- +;; Graphviz Mode +;;---------------------------------------------------------------------------- + +(use-package graphviz-dot-mode + :pin "MELPA" + :ensure t + :config + (setq graphviz-dot-indent-width 4)) + +(provide 'init-graphviz) + +;; End: +;;; init-graphviz.el ends here |