diff options
author | ChristianChiarulli <[email protected]> | 2022-09-21 14:00:44 -0400 |
---|---|---|
committer | ChristianChiarulli <[email protected]> | 2022-09-21 14:00:44 -0400 |
commit | 21311b54a52c13dfe687f22c1d7bee0a163525f2 (patch) | |
tree | 51827e26a092b050879f7f2cc647cc2f54b31270 | |
parent | 64615ae626f2932529b236c3c5f99090dbf9faad (diff) |
fix: plain tokyonight
-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 d7e6cd59..f52502dc 100644 --- a/lua/lvim/core/lualine/components.lua +++ b/lua/lvim/core/lualine/components.lua @@ -23,7 +23,7 @@ vim.api.nvim_set_hl(0, "SLProgress", { fg = "#ECBE7B", bg = statusline_hl.backgr local location_color = nil local branch = "" -if lvim.colorscheme == "tokyonight-night" then +if lvim.colorscheme == "tokyonight" then location_color = "SLBranchName" branch = "%#SLGitIcon#" .. "" .. "%*" .. "%#SLBranchName#" end |