UNPKG

@wallerbuilt/vaq

Version:

A cli for managing vim plugins through vim-plug

9 lines (7 loc) 260 B
const chalk = require('chalk') module.exports = { normalMsg: (msg) => console.log(chalk.yellow(msg)), errorMsg: (msg) => console.log(chalk.red(msg)), infoMsg: (msg) => console.log(chalk.blue(msg)), successMsg: (msg) => console.log(chalk.green(msg)) }