Syntax highlighting for Lightscript.
By default, JSX will be enabled for files with .lsc and .lsx extensions. If you would like to enable JSX only for .lsx files, add
let g:lsx_ext_required = 1Place this in your .vimrc:
Plug 'jguddas/vim-lightscript' Plug 'pangloss/vim-javascript' Plug 'mxw/vim-jsx' … then run the following in Vim:
:source % | PlugInstall Place this in your .vimrc:
Plugin 'jguddas/vim-lightscript' Plugin 'pangloss/vim-javascript' Plugin 'mxw/vim-jsx' … then run the following in Vim:
:source % | PluginInstall For Vundle version < 0.10.2, replace Plugin with Bundle above.
Run the following in a terminal:
cd ~/.vim/bundle git clone https://github.com/jguddas/vim-lightscript git clone https://github.com/pangloss/vim-javascript git clone https://github.com/mxw/vim-jsx 