Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lualine_bg_color doesn't work #60

Open
poperigby opened this issue Nov 21, 2022 · 0 comments
Open

lualine_bg_color doesn't work #60

poperigby opened this issue Nov 21, 2022 · 0 comments

Comments

@poperigby
Copy link

I have this for setting up dracula.nvim:

local dracula = require("dracula")

dracula.setup({
	transparent_bg = true,
	lualine_bg_color = "#44475a",
	overrides = {
		VertSplit = { fg = dracula.colors().selection },
	},
})

vim.cmd("colorscheme dracula")

I also have this for lualine:

require("lualine").setup({
    options = {
        icons_enabled = true,
        theme = "auto",
        component_separators = { left = "", right = "" },
        section_separators = { left = "", right = "" },
        disabled_filetypes = {},
        always_divide_middle = true,
    },
    sections = {
        lualine_a = { {
            "mode",
            color = { gui = "bold" },
        } },
        lualine_b = { "branch", { "diagnostics", sources = { "nvim_diagnostic" } } },
        lualine_c = { "filename" },
        lualine_x = { "fileformat", "filetype" },
        lualine_y = { "progress" },
        lualine_z = { "location" },
    },
    inactive_sections = {
        lualine_a = {},
        lualine_b = {},
        lualine_c = { "filename" },
        lualine_x = { "location" },
        lualine_y = {},
        lualine_z = {},
    },
    tabline = {},
    extensions = {},
})

lualine's background color isn't changing though.

@poperigby poperigby changed the title lualine_bg_color doesn't work. lualine_bg_color doesn't work Nov 21, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant