You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
12 years ago | |
|---|---|---|
| .. | ||
| ftdetect | 12 years ago | |
| ftplugin | 12 years ago | |
| indent | 12 years ago | |
| syntax | 12 years ago | |
| .gitignore | 12 years ago | |
| README.md | 12 years ago | |
| screenshot.png | 12 years ago | |
README.md
VIM-LESS
This vim bundle adds syntax highlighting, indenting and autocompletion for the dynamic stylesheet language LESS.
This bundle is compatible with vim-css-color,
vim-css3-syntax and possibly other plugins that place code
in after/syntax/css.vim or after/syntax/css/*.vim.
Installing and Using
-
Install pathogen into
~/.vim/autoload/and add the following line to your~/.vimrc:call pathogen#infect() -
Make a clone of the
vim-lessrepository:$ mkdir -p ~/.vim/bundle $ cd ~/.vim/bundle $ git clone https://github.com/groenewege/vim-less -
OR use vundle, adding this line to your
~/.vimrc:Bundle 'groenewege/vim-less' -
OR use git submodules:
$ git submodule add https://github.com/groenewege/vim-less.git bundle/vim-less $ git submodule init
Map
.less to .css , lessc is required.
nnoremap <Leader>m :w <BAR> !lessc % > %:t:r.css<CR><space>
Credits
Inspiration from vim-haml, scss-syntax.vim and vim-less
