diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/colorpreview.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/colorpreview.lua b/plugins/colorpreview.lua index 57e96c3..fb1a738 100644 --- a/plugins/colorpreview.lua +++ b/plugins/colorpreview.lua @@ -5,7 +5,7 @@ local DocView = require "core.docview" config.plugins.colorpreview = common.merge({ - enabled = false, + enabled = true, -- The config specification used by the settings gui config_spec = { name = "Color Preview", @@ -14,7 +14,7 @@ config.plugins.colorpreview = common.merge({ description = "Enable or disable the color preview feature.", path = "enabled", type = "toggle", - default = false + default = true } } }, config.plugins.colorpreview) |