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