Rename 'default' colorscheme to 'simple'

This commit also adds an additional name for zenburn as 'default'
so you can refer to zenburn as 'default' or as 'zenburn'
This commit is contained in:
Zachary Yedidia
2016-08-28 13:07:47 -04:00
parent aa9dbdde3e
commit 90e0a2ec1a
4 changed files with 39 additions and 18 deletions

View File

@@ -15,7 +15,7 @@ type Colorscheme map[string]tcell.Style
// The current colorscheme
var colorscheme Colorscheme
var preInstalledColors = []string{"default", "solarized", "solarized-tc", "atom-dark-tc", "monokai", "gruvbox", "zenburn"}
var preInstalledColors = []string{"default", "simple", "solarized", "solarized-tc", "atom-dark-tc", "monokai", "gruvbox", "zenburn"}
// InitColorscheme picks and initializes the colorscheme when micro starts
func InitColorscheme() {