aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/colorizer-lua.txt9
1 files changed, 8 insertions, 1 deletions
diff --git a/doc/colorizer-lua.txt b/doc/colorizer-lua.txt
index 2d27d27..9f2afda 100644
--- a/doc/colorizer-lua.txt
+++ b/doc/colorizer-lua.txt
@@ -91,7 +91,7 @@ PARAMETERS:
'css';
'javascript';
html = {
- mode = 'foreground';
+ mode = 'foreground';
}
}
@@ -112,6 +112,13 @@ PARAMETERS:
css = { rgb_fn = true; }; -- Enable parsing rgb(...) functions in css.
html = { names = false; } -- Disable parsing "names" like Blue or Gray
}
+
+ -- Exclude some filetypes from highlighting by using `!`
+ require 'colorizer'.setup {
+ '*'; -- Highlight all files, but customize some others.
+ '!vim'; -- Exclude vim from highlighting.
+ -- Exclusion Only makes sense if '*' is specified!
+ }
<
|colorizer.highlight_buffer| *colorizer.highlight_buffer*