diff options
Diffstat (limited to '.config/nvim/lua/plugins')
-rw-r--r-- | .config/nvim/lua/plugins/lualine.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.config/nvim/lua/plugins/lualine.lua b/.config/nvim/lua/plugins/lualine.lua index 4c4d7e5..d5d44e8 100644 --- a/.config/nvim/lua/plugins/lualine.lua +++ b/.config/nvim/lua/plugins/lualine.lua @@ -219,9 +219,9 @@ return { -- Is it me or the symbol for modified us really weird symbols = { added = ' ', modified = ' ', removed = ' ' }, diff_color = { - added = { fg = colors.green }, + added = { fg = colors.bright_green }, modified = { fg = colors.orange }, - removed = { fg = colors.red }, + removed = { fg = colors.bright_red }, }, cond = conditions.hide_in_width, } |