blob: 2a4cdb773ba85a5e7e516025016896b3d742b54f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
|