nvim-config/lua/configs/prettier.lua

15 lines
196 B
Lua
Raw Normal View History

2022-10-20 06:56:02 +00:00
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