From e0b192bd4b22260a5c422371b593b8230d65a008 Mon Sep 17 00:00:00 2001 From: DTB Date: Tue, 23 Jul 2024 17:33:14 -0600 Subject: [PATCH] languages.toml: add Helix editor configuration --- .helix/languages.toml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .helix/languages.toml diff --git a/.helix/languages.toml b/.helix/languages.toml new file mode 100644 index 0000000..9cd2745 --- /dev/null +++ b/.helix/languages.toml @@ -0,0 +1,14 @@ +[[language]] +file-types = ["c"] +indent.unit = "\t" +indent.tab-width = 4 +language-id = "c" +name = "c" +roots = ["Makefile"] +scope = "source.c" + +[[language]] +name = "rust" +auto-format = false +indent.unit = "\t" +indent.tab-width = 4