diff options
author | ChristianChiarulli <[email protected]> | 2022-09-21 14:05:19 -0400 |
---|---|---|
committer | ChristianChiarulli <[email protected]> | 2022-09-21 14:05:19 -0400 |
commit | efa466a99add5fad498e4868ca4b37294e4d8307 (patch) | |
tree | 54c145c42aacd10601798fc77dcf306c1d160cff | |
parent | 82f4b353b3c8ecb4f6cb216b00486643f1c07e67 (diff) |
fix: lualine filetype padding
-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 f52502dc..75de300a 100644 --- a/lua/lvim/core/lualine/components.lua +++ b/lua/lvim/core/lualine/components.lua @@ -154,7 +154,7 @@ return { color = {}, cond = conditions.hide_in_width, }, - filetype = { "filetype", cond = conditions.hide_in_width }, + filetype = { "filetype", cond = conditions.hide_in_width, padding = { left = 0, right = 1 } }, scrollbar = { function() local current_line = vim.fn.line "." |