【HTML5】Egret笔记(二):vi / vim支持TypeScript语法高亮
2020-10-11
插件丰富多彩,本文所述方法需要安装两个包即可。
开发环境:Mac
一、vim-pathogen : 管理‘runtimepath’,vim插件管理工具
GitHub地址:https://github.com/tpope/vim-pathogen/
终端执行命令(全部复制,只有一行):
mkdir -p ~/.vim/autoload ~/.vim/bundle && \ curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
然后编辑你的 .vimrc 文件,添加:
execute pathogen#infect()
二、typescript-vim : 支持TypeScript语法高亮
GitHub地址:https://github.com/leafgarland/typescript-vim
终端执行:
git clone https://github.com/leafgarland/typescript-vim.git ~/.vim/bundle/typescript-vim
两个工具更多的功能可查阅其GitHub具体内容。