From 22057e4239245b8a08017f59646a4c4db9c75999 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Sun, 22 Feb 2026 16:00:27 -0500 Subject: [PATCH] build: clean up gitignore and remove empty gitmodules Problem: .gitignore contained 48 lines of C/shared-object boilerplate irrelevant to a Lua Neovim plugin. .gitmodules was tracked but empty. Solution: replace .gitignore with minimal entries covering only files this project actually produces. Delete the vestigial .gitmodules. --- .gitignore | 51 ++++++++------------------------------------------- .gitmodules | 0 2 files changed, 8 insertions(+), 43 deletions(-) delete mode 100644 .gitmodules diff --git a/.gitignore b/.gitignore index 9f5d17c..4a27603 100644 --- a/.gitignore +++ b/.gitignore @@ -1,47 +1,12 @@ -# Compiled Lua sources -luac.out - -# luarocks build files -*.src.rock -*.zip -*.tar.gz - -# Object files -*.o -*.os -*.ko -*.obj -*.elf - -# Precompiled Headers -*.gch -*.pch - -# Libraries -*.lib -*.a -*.la -*.lo -*.def -*.exp - -# Shared objects (inc. Windows DLLs) -*.dll -*.so -*.so.* -*.dylib - -# Executables -*.exe -*.out -*.app -*.i*86 -*.x86_64 -*.hex - +doc/tags +*.log +.*cache* +CLAUDE.md +.claude/ +node_modules/ .direnv/ .envrc -doc/tags -scripts/benchmark.nvim +venv/ perf/tmp/ +scripts/benchmark.nvim profile.json diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index e69de29..0000000