15 lines
196 B
Lua
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
|