summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.editorconfig23
-rw-r--r--docs/index.html25
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 @@
1root = true
2
3[*]
4charset = utf-8
5trim_trailing_whitespace = true
6insert_final_newline = true
7end_of_line = lf
8
9[Makefile]
10indent_style = tab
11indent_size = 4
12
13[*.c]
14indent_style = space
15indent_size = 2
16
17[*.{css,html,js,django}]
18indent_style = space
19indent_size = 2
20
21[*.go]
22indent_style = tab
23indent_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>