docs(readme): add colorscheme to key features

feat(colorscheme): enhance cargdev-cyberpunk configuration
- Enable transparency
- Enable italic comments, bold keywords/functions/types
- Enable terminal colors
This commit is contained in:
Carlos Gutierrez
2026-01-10 22:29:03 -05:00
parent 3940c92b48
commit 0f17946450
2 changed files with 16 additions and 4 deletions

View File

@@ -57,6 +57,7 @@ nvim
## Key Features
- **Colorscheme**: [cargdev-cyberpunk](https://github.com/CarGDev/cargdev-cyberpunk) - Vibrant cyberpunk theme with neon colors and full TypeScript/LSP support
- **Plugin Manager**: [lazy.nvim](https://github.com/folke/lazy.nvim) with auto-update notifications
- **LSP**: Full LSP support with Mason for easy server management
- **Completion**: nvim-cmp with multiple sources

View File

@@ -2,10 +2,21 @@ return {
"CarGDev/cargdev-cyberpunk",
name = "cargdev-cyberpunk",
lazy = false,
priority = 1000,
priority = 1000, -- Load before other plugins for consistent UI
config = function()
vim.opt.termguicolors = true
vim.opt.background = "dark"
require("cargdev-cyberpunk").setup()
local opt = vim.opt
opt.termguicolors = true
opt.background = "dark"
require("cargdev-cyberpunk").setup({
transparent = true,
italic_comments = true,
bold_keywords = true,
bold_functions = true,
bold_types = true,
-- Enable terminal colors
terminal_colors = true,
})
end,
}