feat: add theme status and toggle commands

- Add 'theme status' command to show current theme status across platforms
- Add 'theme toggle' command to switch between light and dark themes
- Improve toggle logic to read current theme from platform-specific sources
- Update documentation to include new commands
- Maintain backward compatibility with existing theme light/dark commands
This commit is contained in:
DannyDannyDanny 2025-09-12 13:51:56 +02:00
parent 072f197660
commit 6355fa64d3
2 changed files with 121 additions and 7 deletions

View file

@ -19,6 +19,8 @@ Unified theme switching that works across platforms (WSL and macOS) for Neovim,
```bash
theme light # Switch to light theme
theme dark # Switch to dark theme
theme toggle # Toggle between light and dark themes
theme status # Show current theme status
```
## Usage
@ -30,6 +32,12 @@ theme light
# Switch to dark theme (works on WSL and macOS)
theme dark
# Toggle between light and dark themes
theme toggle
# Show current theme status
theme status
```
### What Gets Updated