diff options
author | ChristianChiarulli <[email protected]> | 2022-09-21 14:07:31 -0400 |
---|---|---|
committer | ChristianChiarulli <[email protected]> | 2022-09-21 14:07:31 -0400 |
commit | 4a48232ee064fd1340a78fdbc2582de6503f9489 (patch) | |
tree | a73c9a96877082c8f05c2afc0d7ac6ccc15bd002 /lua/lvim/core/lualine/components.lua | |
parent | efa466a99add5fad498e4868ca4b37294e4d8307 (diff) |
fix(lualine): little more padding
Diffstat (limited to 'lua/lvim/core/lualine/components.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 75de300a..690462cc 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, padding = { left = 0, right = 1 } }, + filetype = { "filetype", cond = conditions.hide_in_width, padding = { left = 1, right = 2 } }, scrollbar = { function() local current_line = vim.fn.line "." |