summaryrefslogtreecommitdiff
path: root/lua/lvim/core/lualine/components.lua
diff options
context:
space:
mode:
authorkylo252 <[email protected]>2022-02-12 09:17:34 +0100
committerkylo252 <[email protected]>2022-02-12 09:17:34 +0100
commitff9d883f64b75cb36f3164aae9d36a372f8b46d7 (patch)
tree27f496c5d814fde1bb5950f5580ed476f7fa02d1 /lua/lvim/core/lualine/components.lua
parent2fa176f23fb8dffbafbac6a1f5e34c1f9c79c3f7 (diff)
parent564798b83e40e622fb5c1b6f3803b80f42d092ec (diff)
Merge branch 'rolling'
Diffstat (limited to 'lua/lvim/core/lualine/components.lua')
-rw-r--r--lua/lvim/core/lualine/components.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/lvim/core/lualine/components.lua b/lua/lvim/core/lualine/components.lua
index b1387afa..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 },
@@ -74,7 +74,7 @@ return {
function()
local b = vim.api.nvim_get_current_buf()
if next(vim.treesitter.highlighter.active[b]) then
- return "  "
+ return ""
end
return ""
end,