Merge pull request #104 from kingavatar/main
Fix Check Git Workspace Condition
This commit is contained in:
commit
97370f36ca
|
@ -127,7 +127,7 @@ gls.right[2] = {
|
||||||
provider = function()
|
provider = function()
|
||||||
return " "
|
return " "
|
||||||
end,
|
end,
|
||||||
condition = require("galaxyline.provider_vcs").check_git_workspace,
|
condition = require("galaxyline.condition").check_git_workspace,
|
||||||
highlight = {colors.grey_fg2, colors.lightbg},
|
highlight = {colors.grey_fg2, colors.lightbg},
|
||||||
separator = "",
|
separator = "",
|
||||||
separator_highlight = {colors.lightbg, colors.statusline_bg}
|
separator_highlight = {colors.lightbg, colors.statusline_bg}
|
||||||
|
@ -137,7 +137,7 @@ gls.right[2] = {
|
||||||
gls.right[3] = {
|
gls.right[3] = {
|
||||||
GitBranch = {
|
GitBranch = {
|
||||||
provider = "GitBranch",
|
provider = "GitBranch",
|
||||||
condition = require("galaxyline.provider_vcs").check_git_workspace,
|
condition = require("galaxyline.condition").check_git_workspace,
|
||||||
highlight = {colors.grey_fg2, colors.lightbg}
|
highlight = {colors.grey_fg2, colors.lightbg}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue