From 7eb4aca3c328b08085c06037048467bee04d8ff5 Mon Sep 17 00:00:00 2001 From: Vhyrro Date: Fri, 5 Jan 2024 22:11:41 +0100 Subject: [PATCH] docs(neorg/core/log): remove extraneous comments --- lua/neorg/core/log.lua | 7 ------- 1 file changed, 7 deletions(-) diff --git a/lua/neorg/core/log.lua b/lua/neorg/core/log.lua index 46be2875ac..9e2aced7e9 100644 --- a/lua/neorg/core/log.lua +++ b/lua/neorg/core/log.lua @@ -29,22 +29,16 @@ local lib = require("neorg.core.lib") --- User configuration section --- @type neorg.log.configuration local default_config = { - -- plugin = "neorg", - -- use_console = true, - -- highlights = true, - -- Should write to a file use_file = true, - -- Any messages above this level will be logged. level = "warn", - -- Level configuration modes = { { name = "trace", hl = "Comment", level = vim.log.levels.TRACE }, { name = "debug", hl = "Comment", level = vim.log.levels.DEBUG }, @@ -54,7 +48,6 @@ local default_config = { { name = "fatal", hl = "ErrorMsg", level = 5 }, }, - -- Can limit the number of decimals displayed for floats float_precision = 0.01, }