aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorjgmdev <jgmdev@gmail.com>2022-05-24 20:18:16 -0400
committerjgmdev <jgmdev@gmail.com>2022-05-24 20:18:16 -0400
commitceb1e468667c78c3b72b7ae05a8e850633e4cb6d (patch)
tree4114811692574ac38224e9ab6cb3bc9ca275bd94 /plugins
parent799e33c6d3e3fd9b84693767bcc4a9c3d6e56ef6 (diff)
downloadlite-xl-plugins-ceb1e468667c78c3b72b7ae05a8e850633e4cb6d.tar.gz
lite-xl-plugins-ceb1e468667c78c3b72b7ae05a8e850633e4cb6d.zip
colorpreview: enable by default
Diffstat (limited to 'plugins')
-rw-r--r--plugins/colorpreview.lua4
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)