diff options
author | Christian Chiarulli <[email protected]> | 2022-11-04 13:36:22 -0400 |
---|---|---|
committer | Christian Chiarulli <[email protected]> | 2022-11-04 13:36:22 -0400 |
commit | be9ea09df1491001fd74d5c12b5b8f3286d9de55 (patch) | |
tree | 24909b4c6631d049570d1b45cb0fdb5f75c0ead2 /lua | |
parent | 8794ff76f52e80564aafc1ddda6824a9d7f2f5d7 (diff) |
chore: don't override colors for location
Diffstat (limited to 'lua')
-rw-r--r-- | lua/lvim/core/lualine/components.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lua/lvim/core/lualine/components.lua b/lua/lvim/core/lualine/components.lua index ece87bb3..a7934a38 100644 --- a/lua/lvim/core/lualine/components.lua +++ b/lua/lvim/core/lualine/components.lua @@ -12,7 +12,6 @@ local function diff_source() end end -local location_color = "SLBranchName" local branch = "%#SLGitIcon#" .. lvim.icons.git.Branch .. "%*" .. "%#SLBranchName#" return { @@ -137,7 +136,7 @@ return { color = { gui = "bold" }, cond = conditions.hide_in_width, }, - location = { "location", color = location_color }, + location = { "location" }, progress = { "progress", fmt = function() |