You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Download css.vim (only necessary if your Vim version < 7.4)
Copy the content of the folders to the respective folders in ~/.vim/
Configuration
Usually no configuration is necessary.
CSS3
For highlighting CSS elements, this plugin relies on css.vim that comes bundled with Vim. Unfortunately, it's support for CSS3 is only rudimentary. To avoid highlighting issues I recommend to install the vim-css3-syntax plugin.
Filetype
In some cases you might want to change the filetype from scss to scss.css, for example, if you want to use SnipMate's CSS snippets within your SCSS files. In this case, add the following line to your ~/.vimrc file:
auBufRead,BufNewFile*.scsssetfiletype=scss.css
Please be aware that this setting can cause problems with other plugins as mentioned in #41.
Function names starting with a keyword
Function names starting with a keyword (e.g. baseline-unit()) are not highlighted correctly by default. It can be fixed by adding the following line to your ~/.vimrc file:
autocmdFileTypescsssetiskeyword+=-
Please be aware that this setting also affects the behavior of the motion keys.