diff options
author | jgmdev <jgmdev@gmail.com> | 2022-05-24 20:18:16 -0400 |
---|---|---|
committer | jgmdev <jgmdev@gmail.com> | 2022-05-24 20:18:16 -0400 |
commit | ceb1e468667c78c3b72b7ae05a8e850633e4cb6d (patch) | |
tree | 4114811692574ac38224e9ab6cb3bc9ca275bd94 /plugins | |
parent | 799e33c6d3e3fd9b84693767bcc4a9c3d6e56ef6 (diff) | |
download | lite-xl-plugins-ceb1e468667c78c3b72b7ae05a8e850633e4cb6d.tar.gz lite-xl-plugins-ceb1e468667c78c3b72b7ae05a8e850633e4cb6d.zip |
colorpreview: enable by default
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) |