From 78d3e0c1ccd728a20e00d5778a0759d247ff6e2f Mon Sep 17 00:00:00 2001 From: LucasOe Date: Mon, 13 Jul 2026 21:25:08 +0200 Subject: [PATCH] feat: add setting for the zed editor --- .zed/settings.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .zed/settings.json diff --git a/.zed/settings.json b/.zed/settings.json new file mode 100644 index 0000000..8f2eb3e --- /dev/null +++ b/.zed/settings.json @@ -0,0 +1,17 @@ +{ + "lsp": { + "luau-lsp": { + "settings": { + "luau-lsp": { + "sourcemap": { + "enabled": false + }, + "types": { + "definitionFiles": ["noctalia.d.luau"] + }, + "ignoreGlobs": ["**/*.d.luau"] + } + } + } + } +}