Add shell.nix & editorconfig

This commit is contained in:
2025-08-04 23:00:55 +02:00
parent 01395f247b
commit 5d18e41254
2 changed files with 15 additions and 0 deletions
+9
View File
@@ -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
+6
View File
@@ -0,0 +1,6 @@
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
packages = with pkgs; [
bun
];
}