vim安装Typescript语法高亮

来源:互联网 发布:微信点餐外卖源码 编辑:程序博客网 时间:2024/05/23 15:35

下载vim-plug

curl -fLo ~/.vim/autoload/plug.vim --create-dirs \    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim

下载typescript的plugin

git clone https://github.com/leafgarland/typescript-vim.git ~/.vim/bundle/typescript-vim

配置~/.vimrc,添加

call plug#begin('~/.vim/plugged')Plug 'leafgarland/typescript-vim'call plug#end()

打开vi,输入:PlugInstall

0 0
原创粉丝点击