Quramy / tsuquyomi

A Vim plugin for TypeScript

Home Page:http://www.vim.org/scripts/script.php?script_id=5151

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can I install via vim plug?

golopot opened this issue · comments

I am a clueless beginner user. Is it possible to install this via vim plug?

@golopot

# vimrc 
call plug#begin()
  Plug 'Quramy/tsuquyomi', { 'do': 'npm -g install typescript' }
  
  # neovim or not vim8
  Plug 'Shougo/vimproc.vim', { 'do': 'make' }
call plug#end()

restart vim , and execute :PlugInstall

Thanks!