Add tau as a recognized machine

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Geoff Cheshire 2026-05-10 15:12:11 -04:00
parent 3e1b37a87e
commit 96c9d7929f
2 changed files with 3 additions and 0 deletions

View File

@ -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. We use `vim.uv.os_gethostname()` in `init.lua` to toggle settings.
Current machines: Current machines:
- **vera**: (Primary Linux workstation) - High-res font, full LSP suite. - **vera**: (Primary Linux workstation) - High-res font, full LSP suite.
- **tau**: Linux workstation.
## 🗺️ The Grand Unified Roadmap ## 🗺️ The Grand Unified Roadmap
- [x] Rename project to **whipsmart.nvim**. - [x] Rename project to **whipsmart.nvim**.

View File

@ -51,6 +51,8 @@ do
local hostname = vim.uv.os_gethostname() local hostname = vim.uv.os_gethostname()
if hostname == 'vera' then if hostname == 'vera' then
-- Vera specific settings -- Vera specific settings
elseif hostname == 'tau' then
-- tau specific settings
end end
-- Set to true if you have a Nerd Font installed and selected in the terminal -- Set to true if you have a Nerd Font installed and selected in the terminal