mirror of
https://github.com/timmypidashev/darkbox.nvim.git
synced 2026-04-14 03:33:51 +00:00
Update VertSplit; Update README.md
This commit is contained in:
48
README.md
48
README.md
@@ -1,2 +1,46 @@
|
|||||||
<img src=".github/darkbox.png" title="Darkbox"/>
|

|
||||||
A pure-black refresh of the retro-groove aesthetic for modern displays
|
# 🎨 Darkbox.nvim
|
||||||
|
|
||||||
|
A pure-black refresh of the retro-groove aesthetic for modern displays. Darkbox brings the classic groove style into the modern era with a focus on OLED-friendly pure blacks and carefully selected contrasts.
|
||||||
|
|
||||||
|
## ✨ Features
|
||||||
|
|
||||||
|
- Pure black (#000000) background optimized for OLED displays
|
||||||
|
- Retro-groove inspired color palette with modern refinements
|
||||||
|
- Built-in support for tree-sitter
|
||||||
|
|
||||||
|
## 🚀 Installation
|
||||||
|
|
||||||
|
### Using [lazy.nvim](https://github.com/folke/lazy.nvim)
|
||||||
|
|
||||||
|
Add the following to your Neovim configuration:
|
||||||
|
|
||||||
|
```lua
|
||||||
|
return {
|
||||||
|
"timmypidashev/darkbox.nvim",
|
||||||
|
lazy = false,
|
||||||
|
config = function()
|
||||||
|
require("darkbox").load()
|
||||||
|
end
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
## 📸 Screenshot
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## 🤝 Contributing
|
||||||
|
|
||||||
|
Contributions are welcome! Feel free to:
|
||||||
|
|
||||||
|
1. Report issues
|
||||||
|
2. Suggest improvements
|
||||||
|
3. Create pull requests
|
||||||
|
4. Share your configurations
|
||||||
|
|
||||||
|
## 📝 License
|
||||||
|
|
||||||
|
MIT License - See [LICENSE](LICENSE) for details
|
||||||
|
|
||||||
|
---
|
||||||
|
Made with ♥️ by [timmypidashev](https://github.com/timmypidashev)
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ local function get_groups(colors)
|
|||||||
CursorLineNr = { fg = colors.yellow },
|
CursorLineNr = { fg = colors.yellow },
|
||||||
LineNr = { fg = colors.gray },
|
LineNr = { fg = colors.gray },
|
||||||
SignColumn = { bg = colors.bg },
|
SignColumn = { bg = colors.bg },
|
||||||
VertSplit = { fg = colors.dim_gray },
|
VertSplit = { fg = colors.dim_black },
|
||||||
StatusLine = { fg = colors.fg, bg = colors.black },
|
StatusLine = { fg = colors.fg, bg = colors.black },
|
||||||
StatusLineNC = { fg = colors.gray, bg = colors.black },
|
StatusLineNC = { fg = colors.gray, bg = colors.black },
|
||||||
Visual = { bg = colors.dim_gray },
|
Visual = { bg = colors.dim_gray },
|
||||||
|
|||||||
Reference in New Issue
Block a user