Default setting for tabsize should be float64 not int

Fixes #92
This commit is contained in:
Zachary Yedidia
2016-05-02 07:23:08 -04:00
parent 48a17a508d
commit 4ca6e65197

View File

@@ -59,7 +59,7 @@ func WriteSettings(filename string) error {
func DefaultSettings() map[string]interface{} {
return map[string]interface{}{
"colorscheme": "default",
"tabsize": 4,
"tabsize": float64(4),
"autoindent": true,
"syntax": true,
"tabsToSpaces": false,