about summary refs log tree commit diff stats
path: root/config/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'config/config.go')
-rw-r--r--config/config.go17
1 files changed, 10 insertions, 7 deletions
diff --git a/config/config.go b/config/config.go
index ff0e094..173d4af 100644
--- a/config/config.go
+++ b/config/config.go
@@ -11,14 +11,14 @@ import (
 )
 
 type UIConfig struct {
-	IndexFormat       string
-	TimestampFormat   string
+	IndexFormat       string   `ini:"index-format"`
+	TimestampFormat   string   `ini:"timestamp-format"`
 	ShowHeaders       []string `delim:","`
 	LoadingFrames     []string `delim:","`
-	RenderAccountTabs string
-	SidebarWidth      int
-	PreviewHeight     int
-	EmptyMessage      string
+	RenderAccountTabs string   `ini:"render-account-tabs"`
+	SidebarWidth      int      `ini:"sidebar-width"`
+	PreviewHeight     int      `ini:"preview-height"`
+	EmptyMessage      string   `ini:"empty-message"`
 }
 
 type AccountConfig struct {
@@ -114,7 +114,10 @@ func LoadConfig(root *string) (*AercConfig, error) {
 		},
 	}
 	if ui, err := file.GetSection("ui"); err == nil {
-		ui.MapTo(config.Ui)
+		if err := ui.MapTo(&config.Ui); err != nil {
+			return nil, err
+		}
+		fmt.Printf("%v\n", config.Ui)
 	}
 	if lbinds, err := file.GetSection("lbinds"); err == nil {
 		for key, value := range lbinds.KeysHash() {