diff options
author | Carlos H <[email protected]> | 2022-04-14 22:10:03 -0300 |
---|---|---|
committer | GitHub <[email protected]> | 2022-04-15 05:40:03 +0430 |
commit | 10c7753d8e6f572974f9b9e0d0d8631cd13e60ea (patch) | |
tree | c6ec061e0e335951d64f65094523abc96e2efec7 | |
parent | bc90e8174fd1760d87b5cd68d8fabb9669ab5fb9 (diff) |
fix(lualine): color theme gaps in some components (#2465)
-rw-r--r-- | lua/lvim/core/lualine/components.lua | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lua/lvim/core/lualine/components.lua b/lua/lvim/core/lualine/components.lua index b97f946e..b89bbd36 100644 --- a/lua/lvim/core/lualine/components.lua +++ b/lua/lvim/core/lualine/components.lua @@ -41,7 +41,6 @@ return { modified = { fg = colors.yellow }, removed = { fg = colors.red }, }, - color = {}, cond = nil, }, python_env = { @@ -67,7 +66,6 @@ return { "diagnostics", sources = { "nvim_diagnostic" }, symbols = { error = " ", warn = " ", info = " ", hint = " " }, - color = {}, cond = conditions.hide_in_width, }, treesitter = { @@ -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 "." |