diff options
Diffstat (limited to 'after/syntax/stylus.vim')
-rw-r--r-- | after/syntax/stylus.vim | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/after/syntax/stylus.vim b/after/syntax/stylus.vim index d6ab73ff..2c50a988 100644 --- a/after/syntax/stylus.vim +++ b/after/syntax/stylus.vim @@ -1 +1,6 @@ -syn include syntax/css/vim-coloresque.vim +" Language: Colorful CSS Color Preview +" Author: Aristotle Pagaltzis <pagaltzis@gmx.de> + +if !( has('gui_running') || &t_Co==256 ) | finish | endif + +call css_color#init('css', 'stylusCssAttribute,stylusComment,cssComment') |