From 9d0edf0362385bf67dbfe3d75e80536888aef401 Mon Sep 17 00:00:00 2001 From: Zach Date: Tue, 28 Jan 2025 09:58:58 -0500 Subject: [PATCH] Add configuration for Zed editor that enables maximum feature set --- .zed/settings.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .zed/settings.json diff --git a/.zed/settings.json b/.zed/settings.json new file mode 100644 index 0000000..873def6 --- /dev/null +++ b/.zed/settings.json @@ -0,0 +1,15 @@ +{ + "lsp": { + "rust-analyzer": { + "initialization_options": { + "cargo": { + "features": ["mcu-STM32L083CZTx", "rt", "stm32-usbd", "rtc"] + }, + "check": { + "allTargets": false, + "targets": "thumbv6m-none-eabi" + } + } + } + } +}