├── .editorconfig ├── README.md ├── after └── syntax │ ├── css │ └── vim-coloresque.vim │ ├── html.vim │ ├── less.vim │ ├── r.vim │ ├── sass.vim │ ├── scss.vim │ ├── stylus.vim │ ├── vim.vim │ └── yaml.vim ├── changelog.md └── screen.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gko/vim-coloresque/HEAD/.editorconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gko/vim-coloresque/HEAD/README.md -------------------------------------------------------------------------------- /after/syntax/css/vim-coloresque.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gko/vim-coloresque/HEAD/after/syntax/css/vim-coloresque.vim -------------------------------------------------------------------------------- /after/syntax/html.vim: -------------------------------------------------------------------------------- 1 | syn include syntax/css/vim-coloresque.vim 2 | -------------------------------------------------------------------------------- /after/syntax/less.vim: -------------------------------------------------------------------------------- 1 | syn include syntax/css/vim-coloresque.vim 2 | -------------------------------------------------------------------------------- /after/syntax/r.vim: -------------------------------------------------------------------------------- 1 | syn include syntax/css/vim-coloresque.vim -------------------------------------------------------------------------------- /after/syntax/sass.vim: -------------------------------------------------------------------------------- 1 | syn include syntax/css/vim-coloresque.vim 2 | -------------------------------------------------------------------------------- /after/syntax/scss.vim: -------------------------------------------------------------------------------- 1 | syn include syntax/css/vim-coloresque.vim 2 | -------------------------------------------------------------------------------- /after/syntax/stylus.vim: -------------------------------------------------------------------------------- 1 | syn include syntax/css/vim-coloresque.vim 2 | -------------------------------------------------------------------------------- /after/syntax/vim.vim: -------------------------------------------------------------------------------- 1 | syn include syntax/css/vim-coloresque.vim 2 | -------------------------------------------------------------------------------- /after/syntax/yaml.vim: -------------------------------------------------------------------------------- 1 | syn include syntax/css/vim-coloresque.vim 2 | -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gko/vim-coloresque/HEAD/changelog.md -------------------------------------------------------------------------------- /screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gko/vim-coloresque/HEAD/screen.png --------------------------------------------------------------------------------