mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-02-03 13:21:56 +02:00
27 lines
404 B
Go
27 lines
404 B
Go
package icons
|
|
|
|
import (
|
|
"log"
|
|
|
|
"github.com/samber/lo"
|
|
)
|
|
|
|
var isIconEnabled = false
|
|
|
|
func IsIconEnabled() bool {
|
|
return isIconEnabled
|
|
}
|
|
|
|
func SetNerdFontsVersion(version string) {
|
|
if !lo.Contains([]string{"2", "3"}, version) {
|
|
log.Fatalf("Unsupported nerdFontVersion %s", version)
|
|
}
|
|
|
|
if version == "2" {
|
|
patchGitIconsForNerdFontsV2()
|
|
patchFileIconsForNerdFontsV2()
|
|
}
|
|
|
|
isIconEnabled = true
|
|
}
|