dracula.nvim icon indicating copy to clipboard operation
dracula.nvim copied to clipboard

Van Helsing Version

Open centuryx476 opened this issue 1 year ago • 1 comments

Hello, I love the Dracula Pro themes in particular the Van Helsing variation. Does this nvim provide that ?

centuryx476 avatar Oct 31 '24 13:10 centuryx476

No, you can replace the default colors with the Dracula Pro colors like this:

return {
  'maxmx03/dracula.nvim',
  lazy = false,
  priority = 1000,
  config = function()
    require('dracula').setup {
      on_colors = function()
        return {
          cyan = '#80FFEA',
          -- ...
        }
      end,
    }
    vim.cmd.colorscheme 'dracula'
  end,
}

maxmx03 avatar Oct 31 '24 14:10 maxmx03