summaryrefslogtreecommitdiff
path: root/lua/ache/plugins/hexokinase.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/ache/plugins/hexokinase.lua')
-rw-r--r--lua/ache/plugins/hexokinase.lua48
1 files changed, 28 insertions, 20 deletions
diff --git a/lua/ache/plugins/hexokinase.lua b/lua/ache/plugins/hexokinase.lua
index 10162a0..ea348fd 100644
--- a/lua/ache/plugins/hexokinase.lua
+++ b/lua/ache/plugins/hexokinase.lua
@@ -1,24 +1,32 @@
-- NOTE: That plugin is old and archived
+--but works very well.
+--
+--[
+-- This plugin will add a small example of a color next to the associated usage of that color in the code.
+--
+--
+-- WARNING: It use hexokinase that is a external tool.
+--]
return {
- "RRethy/vim-hexokinase",
- enabled = true,
- build = "make hexokinase",
- config = function()
- vim.g.Hexokinase_highlighters = { "virtual" }
- -- Alternatives options:
- -- vim.g.Hexokinase_ftEnabled = ['css', 'html', 'javascript']
- -- vim.g.Hexokinase_ftOptInPatterns = {
- -- 'css': 'full_hex,rgb,rgba,hsl,hsla,colour_names',
- -- 'html': 'full_hex,rgb,rgba,hsl,hsla,colour_names'
- -- }
- -- vim.g.Hexokinase_highlighters = [
- -- 'virtual',
- -- 'sign_column',
- -- 'background',
- -- 'backgroundfull',
- -- 'foreground',
- -- 'foregroundfull'
- -- }
- end,
+ "RRethy/vim-hexokinase",
+ enabled = true,
+ build = "make hexokinase",
+ config = function()
+ vim.g.Hexokinase_highlighters = { "virtual" }
+ -- Alternatives options:
+ -- vim.g.Hexokinase_ftEnabled = ['css', 'html', 'javascript']
+ -- vim.g.Hexokinase_ftOptInPatterns = {
+ -- 'css': 'full_hex,rgb,rgba,hsl,hsla,colour_names',
+ -- 'html': 'full_hex,rgb,rgba,hsl,hsla,colour_names'
+ -- }
+ -- vim.g.Hexokinase_highlighters = [
+ -- 'virtual',
+ -- 'sign_column',
+ -- 'background',
+ -- 'backgroundfull',
+ -- 'foreground',
+ -- 'foregroundfull'
+ -- }
+ end,
}