diff options
author | Christian Chiarulli <[email protected]> | 2022-09-21 14:41:48 -0400 |
---|---|---|
committer | Christian Chiarulli <[email protected]> | 2022-09-21 14:41:48 -0400 |
commit | 526c010c80de00815f3fb53e1461fcbeabc55f12 (patch) | |
tree | 6d8a5b0d954b125b8e70d1394e76d4c759971a20 | |
parent | 4a48232ee064fd1340a78fdbc2582de6503f9489 (diff) |
fix: lualine git signs padding
-rw-r--r-- | lua/lvim/core/lualine/components.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lua/lvim/core/lualine/components.lua b/lua/lvim/core/lualine/components.lua index 690462cc..0a58e415 100644 --- a/lua/lvim/core/lualine/components.lua +++ b/lua/lvim/core/lualine/components.lua @@ -50,7 +50,8 @@ return { diff = { "diff", source = diff_source, - symbols = { added = "  ", modified = " ", removed = " " }, + symbols = { added = " ", modified = " ", removed = " " }, + padding = { left = 2, right = 1 }, diff_color = { added = { fg = colors.green }, modified = { fg = colors.yellow }, |