Skip to content

Latest commit

 

History

History
56 lines (44 loc) · 1.17 KB

README.md

File metadata and controls

56 lines (44 loc) · 1.17 KB

vim-lightscript

Syntax highlighting for Lightscript.

Usage

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 = 1

Installation

Place 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