Mofiqul / dracula.nvim

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

Brackets and parantetes are now italic #50

Open Kerwood opened 2 years ago

Kerwood commented 2 years ago

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

Mofiqul commented 2 years ago

It is not intended and have to be fixed

xanderio commented 1 year ago

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 },
  },
})
Mofiqul commented 1 year ago

@xanderio - Can you please make a PR?

oryband commented 1 year ago

@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?

Benson9954029 commented 1 year ago

@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?