diff options
author | Jieru Mei <[email protected]> | 2022-02-04 03:43:36 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2022-02-04 12:13:36 +0330 |
commit | 4378a775f1e9c568d51352776daba263d75bd7c9 (patch) | |
tree | bd60fca09f83658719e5cecab5be06423c83a51e /lua | |
parent | 68e841f5493a8a2ded29e13e16bb6f9fc41c59b5 (diff) |
fix(lualine): compacter size for treesitter icon (#2247)
Diffstat (limited to '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 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, |