From f661199197cc1346124b0b12e77f25150c50a776 Mon Sep 17 00:00:00 2001 From: Ashkan Kiani Date: Fri, 18 Oct 2019 09:56:49 -0700 Subject: Allow excluding files from highlight with '*' (#11) Fixes GH-5 --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 2cb28b3..cf25c87 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ require 'colorizer'.setup { 'css'; 'javascript'; html = { - mode = 'foreground'; + mode = 'foreground'; } } @@ -83,7 +83,14 @@ require 'colorizer'.setup({ require 'colorizer'.setup { '*'; -- Highlight all files, but customize some others. css = { rgb_fn = true; }; -- Enable parsing rgb(...) functions in css. - html = { no_names = true; } -- Disable parsing "names" like Blue or Gray + 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! } ``` -- cgit v1.2.3-70-g09d2