All Projects → groenewege → Vim Less

groenewege / Vim Less

vim syntax for LESS (dynamic CSS)

Labels

Projects that are alternatives of or similar to Vim Less

Vim Bufferline
super simple vim plugin to show the list of buffers in the command bar
Stars: ✭ 448 (-26.44%)
Mutual labels:  viml
Autoconfig Mac Vimrc
autoconfig mac vimrc with bundle
Stars: ✭ 502 (-17.57%)
Mutual labels:  viml
Vim As A Python Ide
Example code from my PyCon APAC 2012 talk.
Stars: ✭ 549 (-9.85%)
Mutual labels:  viml
Vim Seek
Seek makes navigating long lines effortless, acting like f but taking two characters.
Stars: ✭ 452 (-25.78%)
Mutual labels:  viml
Kotlin Vim
Kotlin plugin for Vim. Featuring: syntax highlighting, basic indentation, Syntastic support
Stars: ✭ 479 (-21.35%)
Mutual labels:  viml
Vim Mundo
🎄 Vim undo tree visualizer
Stars: ✭ 530 (-12.97%)
Mutual labels:  viml
Vim Ruby Debugger
Vim plugin for debugging Ruby applications (using ruby-debug-ide gem)
Stars: ✭ 434 (-28.74%)
Mutual labels:  viml
Hardmode
Vim: Hard Mode (deprecated)
Stars: ✭ 580 (-4.76%)
Mutual labels:  viml
Vim Autoclose
This plugin for Vim enable an auto-close chars feature for you. For instance if you type an '(', ``autoclose`` will automatically insert a ')' and put the cursor between than.
Stars: ✭ 497 (-18.39%)
Mutual labels:  viml
Creep
a pretty sweet 4px wide pixel font.
Stars: ✭ 546 (-10.34%)
Mutual labels:  viml
Yunocommit.vim
Y U NO commit after so many writes???
Stars: ✭ 456 (-25.12%)
Mutual labels:  viml
Vim Es6
List of JavaScript ES6 snippets and syntax highlighting for vim.
Stars: ✭ 465 (-23.65%)
Mutual labels:  viml
Yats.vim
Yet Another TypeScript Syntax: The most advanced TypeScript Syntax Highlighting in Vim
Stars: ✭ 539 (-11.49%)
Mutual labels:  viml
Wildfire.vim
Smart selection of the closest text object
Stars: ✭ 448 (-26.44%)
Mutual labels:  viml
Dotvim
An attempt at The Ultimate Vim Configuration™ with focus on Rails development. DEPRECATED, SEE https://github.com/vitaly/dotvim2
Stars: ✭ 553 (-9.2%)
Mutual labels:  viml
Ghcmod Vim
Happy Haskell programming on Vim, powered by ghc-mod
Stars: ✭ 435 (-28.57%)
Mutual labels:  viml
Vim Ruby Refactoring
Refactoring tool for Ruby in vim!
Stars: ✭ 503 (-17.41%)
Mutual labels:  viml
Taglist.vim
Source code browser (supports C/C++, java, perl, python, tcl, sql, php, etc)
Stars: ✭ 604 (-0.82%)
Mutual labels:  viml
Vim Gnupg
This script implements transparent editing of gpg encrypted files.
Stars: ✭ 566 (-7.06%)
Mutual labels:  viml
Snipmate Snippets
A collection of snippets for snipmate
Stars: ✭ 541 (-11.17%)
Mutual labels:  viml

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.

vim-less with vim-css-color and vim-css3-syntax (colorscheme solarized)

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-less repository:

      $ mkdir -p ~/.vim/bundle
      $ cd ~/.vim/bundle
      $ git clone https://github.com/groenewege/vim-less
    
  • OR use vundle, adding this line to your ~/.vimrc:

      Plugin 'groenewege/vim-less'
    
  • OR use neobundle, adding this line to your ~/.vimrc:

      NeoBundle '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

License

MIT : groenewege.mit-license.org

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].