diff options
author | ChristianChiarulli <[email protected]> | 2022-10-15 22:29:10 -0400 |
---|---|---|
committer | ChristianChiarulli <[email protected]> | 2022-10-15 22:29:10 -0400 |
commit | 2a3b9510bc8569f47176d8e4b5f84421161cc420 (patch) | |
tree | 2b9dd2e8a505d5cec925e66bf2214d3d6b2d3263 | |
parent | 24309b839ec63958a141251d55b1cb6e50049d0e (diff) |
fix: copilot background should matcha statusline
-rw-r--r-- | lua/lvim/core/lualine/components.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/lvim/core/lualine/components.lua b/lua/lvim/core/lualine/components.lua index 91411d64..e4148e20 100644 --- a/lua/lvim/core/lualine/components.lua +++ b/lua/lvim/core/lualine/components.lua @@ -16,7 +16,7 @@ local statusline_hl = vim.api.nvim_get_hl_by_name("StatusLine", true) local cursorline_hl = vim.api.nvim_get_hl_by_name("CursorLine", true) local normal_hl = vim.api.nvim_get_hl_by_name("Normal", true) -vim.api.nvim_set_hl(0, "SLCopilot", { fg = "#6CC644", bg = "NONE" }) +vim.api.nvim_set_hl(0, "SLCopilot", { fg = "#6CC644", bg = statusline_hl.background }) vim.api.nvim_set_hl(0, "SLGitIcon", { fg = "#E8AB53", bg = cursorline_hl.background }) vim.api.nvim_set_hl(0, "SLBranchName", { fg = normal_hl.foreground, bg = cursorline_hl.background }) vim.api.nvim_set_hl(0, "SLProgress", { fg = "#ECBE7B", bg = statusline_hl.background }) |