diff options
| -rw-r--r-- | .editorconfig | 23 | ||||
| -rw-r--r-- | docs/index.html | 25 |
2 files changed, 48 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..364f1f3 --- /dev/null +++ b/.editorconfig | |||
| @@ -0,0 +1,23 @@ | |||
| 1 | root = true | ||
| 2 | |||
| 3 | [*] | ||
| 4 | charset = utf-8 | ||
| 5 | trim_trailing_whitespace = true | ||
| 6 | insert_final_newline = true | ||
| 7 | end_of_line = lf | ||
| 8 | |||
| 9 | [Makefile] | ||
| 10 | indent_style = tab | ||
| 11 | indent_size = 4 | ||
| 12 | |||
| 13 | [*.c] | ||
| 14 | indent_style = space | ||
| 15 | indent_size = 2 | ||
| 16 | |||
| 17 | [*.{css,html,js,django}] | ||
| 18 | indent_style = space | ||
| 19 | indent_size = 2 | ||
| 20 | |||
| 21 | [*.go] | ||
| 22 | indent_style = tab | ||
| 23 | indent_size = 4 | ||
diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 0000000..fa6b579 --- /dev/null +++ b/docs/index.html | |||
| @@ -0,0 +1,25 @@ | |||
| 1 | <!DOCTYPE html> | ||
| 2 | <html lang="en"> | ||
| 3 | <head> | ||
| 4 | <meta charset="UTF-8"> | ||
| 5 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
| 6 | <meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
| 7 | <title>crep - like grep but for code</title> | ||
| 8 | |||
| 9 | <style> | ||
| 10 | body { | ||
| 11 | padding: 2em; | ||
| 12 | background: white; | ||
| 13 | font-family: sans-serif; | ||
| 14 | line-height: 1.4rem; | ||
| 15 | font-size: 16px; | ||
| 16 | } | ||
| 17 | </style> | ||
| 18 | </head> | ||
| 19 | <body> | ||
| 20 | <h1>crep - like grep but for code</h1> | ||
| 21 | <p>Crep allows users to search for specific code, functions, variables, or | ||
| 22 | patterns within their codebase, helping them locate and navigate code | ||
| 23 | quickly.</p> | ||
| 24 | </body> | ||
| 25 | </html> | ||
