First commit.

This commit is contained in:
2022-01-09 21:19:46 +01:00
commit df36844dcc
107 changed files with 6565 additions and 0 deletions

15
lisp/modes/dot.el Normal file
View File

@@ -0,0 +1,15 @@
;;; markdown --- initializes Dot modes -*- lexical-binding: t; -*-
;;; Commentary:
;;; Code:
;; https://github.com/ppareit/graphviz-dot-mode
;; Emacs mode for the DOT language, used by graphviz.
(use-package graphviz-dot-mode
:init
(use-package company-graphviz-dot)
:config
(setq graphviz-dot-preview-extension "svg")
(setq graphviz-dot-indent-width 2))
(provide 'modes/dot)
;;; dot.el ends here