• Home
Name Date Size #Lines LOC

..--

ftdetect/03-May-2024-21

syntax/03-May-2024-8576

README.mdD03-May-2024608 3421

README.md

1# V8 Torque syntax support for vim
2
3This plugin adds syntax highlighting support for the V8 Torque domain-specific
4language.
5
6## Installation
7
8Installation depends on your favorite plugin manager.
9
10**Pathogen:**
11
12Run
13
14```sh
15ln -s $V8/tools/torque/vim-torque ~/.vim/bundle/vim-torque
16# or ~/.config/nvim/bundle/vim-torque for Neovim
17```
18
19**Vundle:**
20
21Add this line to your `.vimrc` or `~/.config/nvim/init.vim`.
22
23```vim
24Plugin 'file:///path/to/v8/tools/torque/vim-torque'
25```
26
27**vim-plug:**
28
29Add this line to your `.vimrc` or `~/.config/nvim/init.vim`.
30
31```vim
32Plug '~/path/to/v8/tools/torque/vim-torque'
33```
34