diff --git a/README.md b/README.md index 2f05b10..23b6cd8 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/lua/cargdev/plugins/colorscheme.lua b/lua/cargdev/plugins/colorscheme.lua index 63d83b9..022b7fb 100644 --- a/lua/cargdev/plugins/colorscheme.lua +++ b/lua/cargdev/plugins/colorscheme.lua @@ -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, }