diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..25747a5d --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +.zed/settings.json linguist-language=json5 \ No newline at end of file diff --git a/.zed/settings.json b/.zed/settings.json new file mode 100644 index 00000000..0a582612 --- /dev/null +++ b/.zed/settings.json @@ -0,0 +1,22 @@ +// Folder-specific settings +// +// For a full list of overridable settings, and general information on folder-specific settings, +// see the documentation: https://zed.dev/docs/configuring-zed#settings-files +{ + "lsp": { + "rust-analyzer": { + "initialization_options": { + "checkOnSave": { + "command": "clippy" + } + } + }, + "tinymist": { + "initialization_options": { + "exportPdf": "onSave", + "fontPaths": ["assets/fonts"], + "outputPath": "$root/target/typst/$name" + } + } + } +}