Skip to content
This repository has been archived by the owner on Sep 24, 2019. It is now read-only.

Latest commit

 

History

History
38 lines (24 loc) · 1.06 KB

README.rst

File metadata and controls

38 lines (24 loc) · 1.06 KB

VIM BEL

VIM plugin for syntax highlighting of BEL Script.

Installation

with `vundle`_

  1. Install vundle using git
git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
  1. Add the following snippet to your ~/.vimrc file
" no compatibility with Vi
set nocompatible                  " no compatibility with Vi
filetype off                      " required
set rtp+=~/.vim/bundle/vundle/    " add vundle to runtime path
call vundle#rc()                  " initialize vundle
Bundle 'gmarik/vundle'            " required; vundle manages vundle

Bundle 'OpenBEL/openbel-vim'      " installs BEL syntax highlighter

Consult Vundle for Windows if using VIM on Windows.

manual install

  1. Copy bel.vim from the syntax directory to $HOME/.vim/syntax directory.
  2. Copy bel.vim from the ftdetect directory to $HOME/.vim/ftdetect directory.