We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have this for setting up dracula.nvim:
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:
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.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have this for setting up
dracula.nvim
:I also have this for
lualine
:lualine
's background color isn't changing though.The text was updated successfully, but these errors were encountered: