feat: Add an async logger using plenary (#1207)

Co-authored-by: rebuilt <memoryman51@hotmail.com>
This commit is contained in:
kylo252 2021-08-09 19:02:37 +02:00 committed by GitHub
parent 625df947dc
commit 405423108f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
19 changed files with 169 additions and 23 deletions

View file

@ -135,6 +135,8 @@ return {
config = function()
local status_ok, nvim_comment = pcall(require, "nvim_comment")
if not status_ok then
local Log = require "core.log"
Log:get_default().error "Failed to load nvim-comment"
return
end
nvim_comment.setup()