From ed2f07d9f9242c5a39d57149fbc41d11458d6730 Mon Sep 17 00:00:00 2001 From: David Guevara Date: Tue, 17 Feb 2026 16:18:40 -0600 Subject: [PATCH] feat: make index.toml readonly --- .exrc | 3 +++ .gitattributes | 1 + 2 files changed, 4 insertions(+) create mode 100644 .exrc create mode 100644 .gitattributes diff --git a/.exrc b/.exrc new file mode 100644 index 0000000..83d097e --- /dev/null +++ b/.exrc @@ -0,0 +1,3 @@ +augroup exrc + autocmd BufRead,BufNewFile index.toml setlocal nomodifiable readonly +augroup END diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..8107864 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +index.toml linguist-generated=true