Mofiqul / dracula.nvim

Dracula colorscheme for neovim written in Lua
MIT License
630 stars 104 forks source link

About supported plugins in README #129

Closed refaelsh closed 4 weeks ago

refaelsh commented 2 months ago

In the README, there is a section on supported plugins: https://github.com/Mofiqul/dracula.nvim?tab=readme-ov-file#%EF%B8%8F-supported-plugins.

But it does not specify what I need to do to make the supported plugins work with dracula.nvim.

Thanks in advance.

adrian5 commented 4 weeks ago

Usually, supported plugins implies that highlight groups are provided by the colorscheme, not requiring any further action on your part. See the LSP Saga highlights for instance.

--LSP Saga
LspFloatWinNormal = { fg = colors.fg, },
LspFloatWinBorder = { fg = colors.comment, },
LspSagaHoverBorder = { fg = colors.comment, },
LspSagaSignatureHelpBorder = { fg = colors.comment, },
…
refaelsh commented 4 weeks ago

Understood. Thank you very much for your reply.