maxmx03 / dracula.nvim

Dracula.nvim is a port of the popular Dracula colorscheme for Neovim,
MIT License
85 stars 6 forks source link

Van Helsing Version #41

Open centuryx476 opened 3 weeks ago

centuryx476 commented 3 weeks ago

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

maxmx03 commented 3 weeks ago

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,
}