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

Brackets and parantetes are now italic

Open Kerwood opened this issue 3 years ago • 5 comments

After the latest merge today (#49) brackets and parantetes are now italic. Is this a bug or a feature? If its a feature, how do I change it back ?

image

Kerwood avatar Oct 18 '22 11:10 Kerwood

It is not intended and have to be fixed

Mofiqul avatar Oct 18 '22 11:10 Mofiqul

After some poking around a highlight group for just @punctuation is missing.

Temporary workaround

local colors = require("dracula").colors()
require("dracula").setup({
  overrides = {
    ['@punctuation'] = { fg = colors.fg },
  },
})

xanderio avatar Dec 22 '22 09:12 xanderio

@xanderio - Can you please make a PR?

Mofiqul avatar Dec 22 '22 10:12 Mofiqul

@xanderio I can't get this working with lazy.nvim, even when trying the method here https://github.com/Mofiqul/dracula.nvim/issues/76#issuecomment-1478583239

can you please help?

oryband avatar Apr 25 '23 07:04 oryband

@xanderio I can't get this working with lazy.nvim, even when trying the method here #76 (comment)

can you please help?

Overrides will also works in lazy. Maybe your issue is diff hl?

Benson9954029 avatar Jun 08 '23 03:06 Benson9954029