Mofiqul / dracula.nvim

Dracula colorscheme for neovim written in Lua
MIT License
594 stars 103 forks source link

Background transparent #46

Open kamalkech opened 1 year ago

kamalkech commented 1 year ago

option in readme not working, have u another idea how fixe it ?

Mofiqul commented 1 year ago

If its not working then its a bug. for time being you can do workaround like

overrides = {
    Normal = { fg = dracula.colors().white, bg='None' }
},
kamalkech commented 1 year ago

overrides ??? i an not using nvchad

Mario-SO commented 1 year ago

@kamalkech he is referring to the overrides section in the dracula config file shown in the README

Still tried what @Mofiqul said and still not working unless I source the settings.lua file where I have vim.cmd[[colorscheme dracula]] I did the loading of the config before that command executes but still nothing until I source wherever the vim.cmd command is found

graves501 commented 1 year ago

Like @Mario-SO mentioned, the background sadly is not transparent, even if you set transparent_bg = true before executing vim.cmd[[colorscheme dracula]]. Transparency works fine in my terminal when using e.g. catppuccin/nvim :thinking:

Mario-SO commented 1 year ago

Yep I also switched to catppuccin/nvim 😁 like @graves501

Like @Mario-SO mentioned, the background sadly is not transparent, even if you set transparent_bg = true before executing vim.cmd[[colorscheme dracula]]. Transparency works fine in my terminal when using e.g. catppuccin/nvim :thinking:

Leo310 commented 10 months ago

Any plans on fixing this?