change font to smaller non nerdfont

This commit is contained in:
Ivar Fatland
2026-05-10 00:58:01 +02:00
parent eb9b086ed4
commit 701ab198a5
16 changed files with 3 additions and 91 deletions
+3 -3
View File
@@ -15,8 +15,8 @@ import (
"github.com/ktr0731/go-fuzzyfinder/matching"
)
//go:embed gomono-font/GoMonoNerdFontMono-Regular.ttf
var gomonoNerdFont_ttf []byte
//go:embed gomono-font/Go-Mono.ttf
var font_tff []byte
type State struct {
Font rl.Font
@@ -190,6 +190,6 @@ func initialize() State {
)
return State{
Font: rl.LoadFontFromMemory(".ttf", gomonoNerdFont_ttf, fontSize, nil),
Font: rl.LoadFontFromMemory(".ttf", font_tff, fontSize, nil),
}
}