From 5d18e4125480521bbb8ded33d4b3f87b8c8fdcc8 Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Mon, 4 Aug 2025 23:00:55 +0200 Subject: [PATCH] Add shell.nix & editorconfig --- .editorconfig | 9 +++++++++ shell.nix | 6 ++++++ 2 files changed, 15 insertions(+) create mode 100644 .editorconfig create mode 100644 shell.nix diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..ce1f5bb3 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +trim_trailing_whitespace = true +insert_final_newline = true +indent_style = space +indent_size = 2 diff --git a/shell.nix b/shell.nix new file mode 100644 index 00000000..9f9003ca --- /dev/null +++ b/shell.nix @@ -0,0 +1,6 @@ +{pkgs ? import {}}: +pkgs.mkShell { + packages = with pkgs; [ + bun + ]; +}