diff options
| author | Thomas Voss <mail@thomasvoss.com> | 2023-08-15 12:48:13 +0200 | 
|---|---|---|
| committer | Thomas Voss <mail@thomasvoss.com> | 2023-08-15 12:48:13 +0200 | 
| commit | 0d331c1e704c39386a306a9ed06602b3dee88d8e (patch) | |
| tree | 92923a47e35a288e384a2be1ecb6fcea4fc5d0b7 /.config | |
| parent | 9f7680bd00775961ee58468e89ac5ada9f79dc5a (diff) | |
emacs: Add ‘graphviz-dot-mode’
Diffstat (limited to '.config')
| -rw-r--r-- | .config/emacs/config.org | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/.config/emacs/config.org b/.config/emacs/config.org index 55b4dd5..13647ee 100644 --- a/.config/emacs/config.org +++ b/.config/emacs/config.org @@ -574,6 +574,7 @@ with a custom function that reads a list of mode-specific indentation settings.      '((c-mode :width 8 :extra-vars (c-basic-offset))        (css-mode :extra-vars (css-indent-offset))        (emacs-lisp-mode :spaces t) +      (graphviz-dot-mode :extra-vars (graphviz-dot-indent-width))        (lisp-mode :spaces t)        (org-mode :spaces t)        (python-mode :width 4 :spaces nil :extra-vars (python-indent-offset)) @@ -974,8 +975,9 @@ Some modes aren’t installed by default with Emacs, so let’s fetch them  #+BEGIN_SRC elisp -  (use-package markdown-mode)    (use-package git-modes) +  (use-package graphviz-dot-mode) +  (use-package markdown-mode)  #+END_SRC  |