Skip to content

Commit

Permalink
fix(lualine): color theme gaps in some components (#2465)
Browse files Browse the repository at this point in the history
  • Loading branch information
chsjr1996 committed Apr 15, 2022
1 parent bc90e81 commit 10c7753
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lua/lvim/core/lualine/components.lua
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ return {
modified = { fg = colors.yellow },
removed = { fg = colors.red },
},
color = {},
cond = nil,
},
python_env = {
Expand All @@ -67,7 +66,6 @@ return {
"diagnostics",
sources = { "nvim_diagnostic" },
symbols = { error = "", warn = "", info = "", hint = "" },
color = {},
cond = conditions.hide_in_width,
},
treesitter = {
Expand Down Expand Up @@ -139,7 +137,7 @@ return {
color = {},
cond = conditions.hide_in_width,
},
filetype = { "filetype", cond = conditions.hide_in_width, color = {} },
filetype = { "filetype", cond = conditions.hide_in_width },
scrollbar = {
function()
local current_line = vim.fn.line "."
Expand Down

0 comments on commit 10c7753

Please sign in to comment.