doums / darcula

A Vim color scheme reproduction of the official JetBrains IDE Darcula theme
368 stars 59 forks source link

How do i use this in lazyvim? #31

Closed brianpooe closed 11 months ago

deadbaed commented 11 months ago

I used this in my nvim config (in lua):

require("lazy").setup({
  {
    "doums/darcula", lazy = false, priority = 1000,
    config = function()
      vim.cmd.colorscheme('darcula')
    end,
  },
})