local M = {} function M.config() local status_ok, prettier = pcall(require, "prettier") if not status_ok then return end prettier.setup({ bin = 'prettierd' }) end return M