Make zenburn the default colorscheme

This commit also adds better support for constant.number in the
syntax files.
This commit is contained in:
Zachary Yedidia
2016-08-27 17:10:26 -04:00
parent e0074c881c
commit 2de42bcf99
14 changed files with 43 additions and 35 deletions

File diff suppressed because one or more lines are too long

View File

@@ -150,12 +150,12 @@ func GetOption(name string) interface{} {
return GetGlobalOption(name)
}
// DefaultSettings returns the default settings for micro
// DefaultGlobalSettings returns the default global settings for micro
// Note that colorscheme is a global only option
func DefaultGlobalSettings() map[string]interface{} {
return map[string]interface{}{
"autoindent": true,
"colorscheme": "monokai",
"colorscheme": "zenburn",
"cursorline": false,
"ignorecase": false,
"indentchar": " ",