diff options
author | Jieru Mei <[email protected]> | 2022-02-04 10:55:11 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2022-02-04 19:25:11 +0330 |
commit | f7cae318e606c3683c532403a87c5fb19b3cea42 (patch) | |
tree | b4bedba9408b0f2d566563293569e1d7bb9107cd /lua/lvim/core/lualine/components.lua | |
parent | 4378a775f1e9c568d51352776daba263d75bd7c9 (diff) |
fix(lualine): use 1-char width symbol for changed (#2246)
Diffstat (limited to 'lua/lvim/core/lualine/components.lua')
-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 36441656..b97f946e 100644 --- a/lua/lvim/core/lualine/components.lua +++ b/lua/lvim/core/lualine/components.lua @@ -35,7 +35,7 @@ return { diff = { "diff", source = diff_source, - symbols = { added = "  ", modified = "柳 ", removed = " " }, + symbols = { added = "  ", modified = " ", removed = " " }, diff_color = { added = { fg = colors.green }, modified = { fg = colors.yellow }, |