1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-02-03 13:21:56 +02:00

27 lines
404 B
Go
Raw Normal View History

2022-04-23 10:41:40 +09:00
package icons
2023-06-15 13:39:11 +02:00
import (
"log"
"github.com/samber/lo"
)
2022-04-23 10:41:40 +09:00
var isIconEnabled = false
func IsIconEnabled() bool {
return isIconEnabled
}
2023-06-15 13:39:11 +02:00
func SetNerdFontsVersion(version string) {
if !lo.Contains([]string{"2", "3"}, version) {
log.Fatalf("Unsupported nerdFontVersion %s", version)
}
if version == "2" {
patchGitIconsForNerdFontsV2()
patchFileIconsForNerdFontsV2()
}
isIconEnabled = true
2022-04-23 10:41:40 +09:00
}