Add graphviz

This commit is contained in:
Jesús
2022-10-17 04:59:24 +08:00
parent 6ffb7fccc6
commit 9db58fdc7d
2 changed files with 21 additions and 0 deletions

20
modules/init-graphviz.el Normal file
View File

@@ -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