Add tau as a recognized machine
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
3e1b37a87e
commit
96c9d7929f
|
|
@ -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**.
|
||||||
|
|
|
||||||
2
init.lua
2
init.lua
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue