1

Add doom config to repo

This commit is contained in:
2022-07-01 16:28:22 +02:00
parent 0fa8ff3bba
commit aa6a7fad3b
27 changed files with 1347 additions and 0 deletions

View File

@ -0,0 +1,14 @@
# -*- mode: snippet -*-
# name: graphviz deterministic finite automaton
# key: dfa
# --
#+BEGIN_SRC dot :file $1.png :cmdline -Kdot -Tpng
digraph {
rankdir = LR;
splines = true;
node [shape = doublecircle]; Z1;
node [shape = circle];
Z0 -> Z1 [label = ""];
$0
}
#+END_SRC