summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJieru Mei <[email protected]>2022-02-04 10:55:11 -0500
committerGitHub <[email protected]>2022-02-04 19:25:11 +0330
commitf7cae318e606c3683c532403a87c5fb19b3cea42 (patch)
treeb4bedba9408b0f2d566563293569e1d7bb9107cd
parent4378a775f1e9c568d51352776daba263d75bd7c9 (diff)
fix(lualine): use 1-char width symbol for changed (#2246)
-rw-r--r--lua/lvim/core/lualine/components.lua2
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 },