diff options
author | Christian Chiarulli <[email protected]> | 2022-11-04 11:12:12 -0400 |
---|---|---|
committer | Christian Chiarulli <[email protected]> | 2022-11-04 11:12:12 -0400 |
commit | c00659843412fb201016fb06a39256a0feb09fe9 (patch) | |
tree | 3b77a081c079616f326d4229de396954115fb913 | |
parent | 313191169ec2beae3cdd46d724933fe7f6c86e57 (diff) |
chore: use bigger chevrons
-rw-r--r-- | lua/lvim/core/breadcrumbs.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/lvim/core/breadcrumbs.lua b/lua/lvim/core/breadcrumbs.lua index d33deec5..97349576 100644 --- a/lua/lvim/core/breadcrumbs.lua +++ b/lua/lvim/core/breadcrumbs.lua @@ -72,7 +72,7 @@ M.config = function() Variable = icons.Variable .. " ", }, highlight = true, - separator = " " .. lvim.icons.ui.ChevronShortRight .. " ", + separator = " " .. lvim.icons.ui.ChevronRight .. " ", depth_limit = 0, depth_limit_indicator = "..", }, @@ -154,7 +154,7 @@ local get_gps = function() end if not require("lvim.utils.functions").isempty(gps_location) then - return "%#NavicSeparator#".. lvim.icons.ui.ChevronShortRight .. "%* " .. gps_location + return "%#NavicSeparator#".. lvim.icons.ui.ChevronRight .. "%* " .. gps_location else return "" end |