summaryrefslogtreecommitdiffstats
path: root/.zed
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2026-07-22 19:40:59 +0200
committerVolpeon <git@volpeon.ink>2026-07-22 19:40:59 +0200
commitc1e28224aa2e1450031669d9a7e359b63e04687d (patch)
tree68f3d8905c763a91f68001d868197effa92adafa /.zed
downloadcorvos-website-c1e28224aa2e1450031669d9a7e359b63e04687d.tar.gz
corvos-website-c1e28224aa2e1450031669d9a7e359b63e04687d.tar.bz2
corvos-website-c1e28224aa2e1450031669d9a7e359b63e04687d.zip
Init
Diffstat (limited to '.zed')
-rw-r--r--.zed/settings.json184
-rw-r--r--.zed/tasks.json8
2 files changed, 192 insertions, 0 deletions
diff --git a/.zed/settings.json b/.zed/settings.json
new file mode 100644
index 0000000..3013fe6
--- /dev/null
+++ b/.zed/settings.json
@@ -0,0 +1,184 @@
1// Folder-specific settings
2//
3// For a full list of overridable settings, and general information on folder-specific settings,
4// see the documentation: https://zed.dev/docs/configuring-zed#settings-files
5{
6 "languages": {
7 "MDX": {
8 "format_on_save": "on",
9 "prettier": {
10 "allowed": false
11 },
12 "formatter": [
13 {
14 "code_action": "source.fixAll.oxc"
15 },
16 {
17 "language_server": {
18 "name": "oxfmt"
19 }
20 }
21 ]
22 },
23 "JavaScript": {
24 "language_servers": [
25 "deno",
26 "oxfmt",
27 "!typescript-language-server",
28 "!vtsls",
29 "!eslint",
30 "!codebook",
31 "..."
32 ],
33 "format_on_save": "on",
34 "prettier": {
35 "allowed": false
36 },
37 "formatter": [
38 {
39 "code_action": "source.fixAll.oxc"
40 },
41 {
42 "language_server": {
43 "name": "oxfmt"
44 }
45 }
46 ]
47 },
48 "TypeScript": {
49 "language_servers": [
50 "deno",
51 "oxfmt",
52 "!typescript-language-server",
53 "!vtsls",
54 "!eslint",
55 "!codebook",
56 "..."
57 ],
58 "format_on_save": "on",
59 "prettier": {
60 "allowed": false
61 },
62 "formatter": [
63 {
64 "code_action": "source.fixAll.oxc"
65 },
66 {
67 "language_server": {
68 "name": "oxfmt"
69 }
70 }
71 ]
72 },
73 "TSX": {
74 "language_servers": [
75 "deno",
76 "oxfmt",
77 "!typescript-language-server",
78 "!vtsls",
79 "!eslint",
80 "!codebook",
81 "..."
82 ],
83 "format_on_save": "on",
84 "prettier": {
85 "allowed": false
86 },
87 "formatter": [
88 {
89 "code_action": "source.fixAll.oxc"
90 },
91 {
92 "language_server": {
93 "name": "oxfmt"
94 }
95 }
96 ]
97 },
98 "JSON": {
99 "language_servers": ["!codebook", "..."],
100 "format_on_save": "on",
101 "prettier": {
102 "allowed": false
103 },
104 "formatter": [
105 {
106 "code_action": "source.fixAll.oxc"
107 },
108 {
109 "language_server": {
110 "name": "oxfmt"
111 }
112 }
113 ]
114 },
115 "JSONC": {
116 "format_on_save": "on",
117 "prettier": {
118 "allowed": false
119 },
120 "formatter": [
121 {
122 "code_action": "source.fixAll.oxc"
123 },
124 {
125 "language_server": {
126 "name": "oxfmt"
127 }
128 }
129 ]
130 },
131 "SCSS": {
132 "format_on_save": "on",
133 "prettier": {
134 "allowed": false
135 },
136 "formatter": [
137 {
138 "code_action": "source.fixAll.oxc"
139 },
140 {
141 "language_server": {
142 "name": "oxfmt"
143 }
144 }
145 ]
146 }
147 },
148 "lsp": {
149 "deno": {
150 "settings": {
151 "deno": {
152 "enable": true
153 }
154 }
155 },
156 "oxlint": {
157 "initialization_options": {
158 "settings": {
159 "configPath": null,
160 "run": "onType",
161 "disableNestedConfig": false,
162 "fixKind": "safe_fix",
163 "typeAware": true,
164 "unusedDisableDirectives": "deny"
165 }
166 }
167 },
168 "oxfmt": {
169 "initialization_options": {
170 "settings": {
171 "fmt.configPath": null,
172 "run": "onSave"
173 }
174 }
175 },
176 "mdx-analyzer": {
177 "initialization_options": {
178 "typescript": {
179 "enabled": true
180 }
181 }
182 }
183 }
184}
diff --git a/.zed/tasks.json b/.zed/tasks.json
new file mode 100644
index 0000000..b706900
--- /dev/null
+++ b/.zed/tasks.json
@@ -0,0 +1,8 @@
1// Project tasks configuration. See https://zed.dev/docs/tasks for documentation.
2[
3 {
4 "label": "Serve",
5 "command": "deno",
6 "args": ["run", "serve"]
7 }
8]