|
| 1 | +return { |
| 2 | + -- { -- You can easily change to a different colorscheme. |
| 3 | + -- -- Change the name of the colorscheme plugin below, and then |
| 4 | + -- -- change the command in the config to whatever the name of that colorscheme is. |
| 5 | + -- -- |
| 6 | + -- -- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`. |
| 7 | + -- 'folke/tokyonight.nvim', |
| 8 | + -- priority = 1000, -- Make sure to load this before all the other start plugins. |
| 9 | + -- config = function() |
| 10 | + -- ---@diagnostic disable-next-line: missing-fields |
| 11 | + -- require('tokyonight').setup { |
| 12 | + -- styles = { |
| 13 | + -- comments = { italic = false }, -- Disable italics in comments |
| 14 | + -- }, |
| 15 | + -- } |
| 16 | + -- |
| 17 | + -- -- Load the colorscheme here. |
| 18 | + -- -- Like many other themes, this one has different styles, and you could load |
| 19 | + -- -- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'. |
| 20 | + -- vim.cmd.colorscheme 'tokyonight-night' |
| 21 | + -- end, |
| 22 | + -- }, |
| 23 | + { |
| 24 | + 'scottmckendry/cyberdream.nvim', |
| 25 | + lazy = false, |
| 26 | + priority = 1000000, |
| 27 | + opts = { |
| 28 | + borderless_pickers = false, |
| 29 | + saturation = 0.95, |
| 30 | + cache = true, |
| 31 | + }, |
| 32 | + init = function() |
| 33 | + vim.cmd 'colorscheme cyberdream' |
| 34 | + vim.api.nvim_set_hl(0, 'TroubleNormal', { bg = 'none', ctermbg = 'none' }) |
| 35 | + vim.api.nvim_set_hl(0, 'TroubleNormalNC', { bg = 'none', ctermbg = 'none' }) |
| 36 | + vim.api.nvim_set_hl(0, 'TroubleNormal', { bg = 'none', ctermbg = 'none' }) |
| 37 | + vim.api.nvim_set_hl(0, 'TroubleNormalNC', { bg = 'none', ctermbg = 'none' }) |
| 38 | + vim.api.nvim_set_hl(0, 'WinSeparator', { fg = '#3c4048', bg = 'none' }) |
| 39 | + vim.api.nvim_set_hl(0, 'IndentBlanklineChar', { fg = '#7b8496' }) |
| 40 | + vim.api.nvim_set_hl(0, 'TreesitterContext', { bg = '#232429' }) |
| 41 | + vim.api.nvim_set_hl(0, 'TreesitterContextLineNumber', { bg = '#232429' }) |
| 42 | + vim.api.nvim_set_hl(0, 'TreesitterContextBottom', { bg = '#232429', underline = true }) |
| 43 | + vim.api.nvim_set_hl(0, 'CursorLineNr', { fg = '#ffffff' }) |
| 44 | + end, |
| 45 | + }, |
| 46 | +} |
0 commit comments