summaryrefslogtreecommitdiff
path: root/lua/lvim/config/defaults.lua
diff options
context:
space:
mode:
authorkylo252 <[email protected]>2021-10-21 07:42:28 +0200
committerGitHub <[email protected]>2021-10-21 07:42:28 +0200
commit25747cfff457d5375b6141588d81017ca515ffcb (patch)
treede3600a58335600fc1a77233f01b300adc0ffacb /lua/lvim/config/defaults.lua
parent03e5760e59b5dd420956908b6f8b57c33f70f2cd (diff)
[Feature] use structlog and notify.nvim (#1737)
Co-authored-by: Luc Sinet <[email protected]>
Diffstat (limited to 'lua/lvim/config/defaults.lua')
-rw-r--r--lua/lvim/config/defaults.lua14
1 files changed, 8 insertions, 6 deletions
diff --git a/lua/lvim/config/defaults.lua b/lua/lvim/config/defaults.lua
index ffbb2e1b..effe1e77 100644
--- a/lua/lvim/config/defaults.lua
+++ b/lua/lvim/config/defaults.lua
@@ -8,6 +8,12 @@ return {
builtin = {},
+ plugins = {
+ -- use config.lua for this not put here
+ },
+
+ autocommands = {},
+ lang = {},
log = {
---@usage can be { "trace", "debug", "info", "warn", "error", "fatal" },
level = "warn",
@@ -22,11 +28,7 @@ return {
float_opts = {},
},
},
+ ---@usage set to false to restore the default behavior of vim.notify
+ override_notify = true,
},
- plugins = {
- -- use config.lua for this not put here
- },
-
- autocommands = {},
- lang = {},
}