From 96c9d7929fac81540da304b8ca1e260d5e29b989 Mon Sep 17 00:00:00 2001 From: Geoff Cheshire Date: Sun, 10 May 2026 15:12:11 -0400 Subject: [PATCH] Add tau as a recognized machine Co-Authored-By: Claude Sonnet 4.6 --- UNIFIED.md | 1 + init.lua | 2 ++ 2 files changed, 3 insertions(+) diff --git a/UNIFIED.md b/UNIFIED.md index e5a15a3e..877ebef2 100644 --- a/UNIFIED.md +++ b/UNIFIED.md @@ -37,6 +37,7 @@ Available extras: `autopairs`, `debug` (DAP/Go), `gitsigns` (extended keymaps), We use `vim.uv.os_gethostname()` in `init.lua` to toggle settings. Current machines: - **vera**: (Primary Linux workstation) - High-res font, full LSP suite. +- **tau**: Linux workstation. ## 🗺️ The Grand Unified Roadmap - [x] Rename project to **whipsmart.nvim**. diff --git a/init.lua b/init.lua index 6bfb41ad..3b4d246f 100644 --- a/init.lua +++ b/init.lua @@ -51,6 +51,8 @@ do local hostname = vim.uv.os_gethostname() if hostname == 'vera' then -- Vera specific settings + elseif hostname == 'tau' then + -- tau specific settings end -- Set to true if you have a Nerd Font installed and selected in the terminal