mirror of
https://github.com/LunarVim/LunarVim.git
synced 2025-08-29 14:28:18 +02:00
feat: Add an async logger using plenary (#1207)
Co-authored-by: rebuilt <memoryman51@hotmail.com>
This commit is contained in:
parent
625df947dc
commit
405423108f
19 changed files with 169 additions and 23 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue