mirror of
https://github.com/timmypidashev/darkbox.nvim.git
synced 2026-06-03 14:24:37 +00:00
172 lines
4.7 KiB
Plaintext
172 lines
4.7 KiB
Plaintext
*darkbox.nvim.txt*
|
|
For Neovim >= 0.8.0 Last change: 2026 April 15
|
|
|
|
==============================================================================
|
|
Table of Contents *darkbox.nvim-table-of-contents*
|
|
|
|
- Features |darkbox.nvim-features|
|
|
- Screenshots |darkbox.nvim-screenshots|
|
|
- Installation |darkbox.nvim-installation|
|
|
- Configuration |darkbox.nvim-configuration|
|
|
- Overrides |darkbox.nvim-overrides|
|
|
- Contributing |darkbox.nvim-contributing|
|
|
- License |darkbox.nvim-license|
|
|
1. Links |darkbox.nvim-links|
|
|
# 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 *darkbox.nvim-features*
|
|
|
|
- Pure black (#000000) background optimized for OLED displays
|
|
- Retro-groove inspired color palette with modern refinements
|
|
- Built-in support for tree-sitter
|
|
|
|
|
|
SCREENSHOTS *darkbox.nvim-screenshots*
|
|
|
|
|
|
CLASSIC ~
|
|
|
|
|
|
RETRO ~
|
|
|
|
|
|
DIM ~
|
|
|
|
|
|
INSTALLATION *darkbox.nvim-installation*
|
|
|
|
|
|
USING VIM.PACK (NEOVIM 0.12+) ~
|
|
|
|
The built-in package manager. Recommended.
|
|
|
|
>lua
|
|
vim.pack.add({
|
|
{ src = "https://github.com/timmypidashev/darkbox.nvim" },
|
|
})
|
|
|
|
require("darkbox").setup({
|
|
contrast = "retro",
|
|
})
|
|
vim.cmd.colorscheme("darkbox")
|
|
<
|
|
|
|
|
|
USING LAZY.NVIM ~
|
|
|
|
>lua
|
|
return {
|
|
"timmypidashev/darkbox.nvim",
|
|
lazy = false,
|
|
priority = 1000,
|
|
config = function()
|
|
require("darkbox").setup({
|
|
contrast = "retro",
|
|
})
|
|
vim.cmd.colorscheme("darkbox")
|
|
end,
|
|
}
|
|
<
|
|
|
|
|
|
The examples below use the `vim.pack` pattern. If you use lazy.nvim, place the
|
|
`setup()` and `colorscheme` calls inside the `config` function instead.
|
|
|
|
CONFIGURATION *darkbox.nvim-configuration*
|
|
|
|
All available options with their defaults:
|
|
|
|
>lua
|
|
vim.pack.add({
|
|
{ src = "https://github.com/timmypidashev/darkbox.nvim" },
|
|
})
|
|
|
|
require("darkbox").setup({
|
|
terminal_colors = true, -- add neovim terminal colors
|
|
undercurl = true,
|
|
underline = true,
|
|
bold = true,
|
|
italic = {
|
|
strings = true,
|
|
emphasis = true,
|
|
comments = true,
|
|
operators = false,
|
|
folds = true,
|
|
},
|
|
strikethrough = true,
|
|
invert_selection = false,
|
|
invert_signs = false,
|
|
invert_tabline = false,
|
|
invert_intend_guides = false,
|
|
inverse = true, -- invert background for search, diffs, statuslines and errors
|
|
contrast = "", -- can be "retro", "dim" or empty string for classic
|
|
palette_overrides = {},
|
|
overrides = {},
|
|
dim_inactive = false,
|
|
transparent_mode = false,
|
|
})
|
|
vim.cmd.colorscheme("darkbox")
|
|
<
|
|
|
|
**VERY IMPORTANT**: Call `setup()` **BEFORE** the colorscheme command to apply
|
|
custom configs.
|
|
|
|
|
|
OVERRIDES *darkbox.nvim-overrides*
|
|
|
|
|
|
PALETTE ~
|
|
|
|
Specify your own palette colors:
|
|
|
|
>lua
|
|
vim.pack.add({
|
|
{ src = "https://github.com/timmypidashev/darkbox.nvim" },
|
|
})
|
|
|
|
require("darkbox").setup({
|
|
palette_overrides = {
|
|
base_red = "#991900",
|
|
},
|
|
})
|
|
vim.cmd.colorscheme("darkbox")
|
|
<
|
|
|
|
|
|
CONTRIBUTING *darkbox.nvim-contributing*
|
|
|
|
Contributions are welcome! Feel free to:
|
|
|
|
1. Report issues
|
|
2. Suggest improvements
|
|
3. Create pull requests
|
|
4. Share your configurations
|
|
|
|
|
|
LICENSE *darkbox.nvim-license*
|
|
|
|
MIT License - See LICENSE <LICENSE> for details
|
|
|
|
------------------------------------------------------------------------------
|
|
View the project page <https://timmypidashev.dev/projects/darkbox> for darkbox
|
|
on my website for more info :D
|
|
|
|
Made with by timmypidashev <https://github.com/timmypidashev>
|
|
|
|
==============================================================================
|
|
1. Links *darkbox.nvim-links*
|
|
|
|
1. *Darkbox Theme Preview*: .github/darkbox.png
|
|
2. *Screenshot*: .github/screenshot_classic.png
|
|
3. *Screenshot*: .github/screenshot_retro.png
|
|
4. *Screenshot*: .github/screenshot_dim.png
|
|
|
|
Generated by panvimdoc <https://github.com/kdheepak/panvimdoc>
|
|
|
|
vim:tw=78:ts=8:noet:ft=help:norl:
|