https://github.com/clord/vim-scenario
vim syntax highlighting for scenario format
https://github.com/clord/vim-scenario
Last synced: 6 months ago
JSON representation
vim syntax highlighting for scenario format
- Host: GitHub
- URL: https://github.com/clord/vim-scenario
- Owner: clord
- Created: 2013-02-07T20:07:37.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-02-07T20:19:52.000Z (over 13 years ago)
- Last Synced: 2025-03-14T02:14:06.581Z (over 1 year ago)
- Language: VimL
- Size: 105 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Installation
Recommended that you use [vundle](https://github.com/gmarik/vundle) to install. Here is what the start of my
vimrc looks like:
set nocompatible
filetype off
set rtp+=~/.vim/bundle/vundle
call vundle#rc()
Bundle 'gmarik/vundle'
""" ...
Bundle 'clord/vim-insfile'
Bundle 'clord/vim-bookmaster'
Bundle 'clord/vim-scenario'
" :BundleInstall will ensure these are all installed, if vundle is available
syntax enable " Must come after the Bundle commands so that syntax highlighting is available
filetype plugin indent on
:BundleInstall will install from github.