From dcd52282a1ac2008cbc715ae2ef06fedd5e2badb Mon Sep 17 00:00:00 2001 From: Preston Hunt Date: Fri, 28 Aug 2026 12:28:25 -0700 Subject: [PATCH] add .gitignore The repo had none, so the stray lazy.nvim/ clone that setup_nvim leaves in the working directory showed up as untracked noise in every 'git status', alongside sed -i.bak backups and editor swap files. Also ignores config.local, the per-machine settings file. Co-Authored-By: Claude Opus 5 (1M context) --- .gitignore | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..340cadc --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +# Per-machine settings; see config.local.example +/config.local + +# Stray clone left in the repo root by setup_nvim's destination-less +# "git clone ... lazy.nvim.git". lazy.nvim bootstraps itself from +# init.lua, so nothing here should ever be a checkout of it. +/lazy.nvim/ + +# Backups left behind by sed -i.bak +*.bak + +# Editor and OS noise +*.swp +*~ +.DS_Store