summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJieru Mei <[email protected]>2022-02-04 03:43:36 -0500
committerGitHub <[email protected]>2022-02-04 12:13:36 +0330
commit4378a775f1e9c568d51352776daba263d75bd7c9 (patch)
treebd60fca09f83658719e5cecab5be06423c83a51e
parent68e841f5493a8a2ded29e13e16bb6f9fc41c59b5 (diff)
fix(lualine): compacter size for treesitter icon (#2247)
-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 c91c8ca2..36441656 100644
--- a/lua/lvim/core/lualine/components.lua
+++ b/lua/lvim/core/lualine/components.lua
@@ -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,