From b8dce5c1561f27dbd56f5fc34eff0b42fa973bb7 Mon Sep 17 00:00:00 2001 From: sommerfeld Date: Fri, 22 May 2026 10:41:24 +0100 Subject: feat(tuicr): configure gruvbox-dark theme Add dot_config/tuicr/config.toml with theme = "gruvbox-dark". Symlinked from nix/vm.nix per the symlink invariant so the same config applies on both host (via chezmoi) and VM (via home-manager). --- dot_config/tuicr/config.toml | 1 + nix/vm.nix | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 dot_config/tuicr/config.toml diff --git a/dot_config/tuicr/config.toml b/dot_config/tuicr/config.toml new file mode 100644 index 0000000..b6270db --- /dev/null +++ b/dot_config/tuicr/config.toml @@ -0,0 +1 @@ +theme = "gruvbox-dark" diff --git a/nix/vm.nix b/nix/vm.nix index 5f24f90..c9bb391 100644 --- a/nix/vm.nix +++ b/nix/vm.nix @@ -89,6 +89,9 @@ in "gdb/gdbearlyinit".source = link "dot_config/gdb/gdbearlyinit"; "clangd/config.yaml".source = link "dot_config/clangd/config.yaml"; "ccache/ccache.conf".source = link "dot_config/ccache/ccache.conf"; + + # Code review (binary from common.nix) + "tuicr/config.toml".source = link "dot_config/tuicr/config.toml"; }; # Claude-code looks under ~/.claude (NOT XDG). Skills live there. -- cgit v1.3.1