nvim-config/lua/configs/prettier.lua
2022-10-19 23:56:02 -07:00

15 lines
196 B
Lua

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