LunarVim/lua/lvim/config/defaults.lua
kylo252 25747cfff4
[Feature] use structlog and notify.nvim (#1737)
Co-authored-by: Luc Sinet <luc.sinet@gmail.com>
2021-10-21 07:42:28 +02:00

34 lines
812 B
Lua

return {
leader = "space",
colorscheme = "onedarker",
line_wrap_cursor_movement = true,
transparent_window = false,
format_on_save = true,
keys = {},
builtin = {},
plugins = {
-- use config.lua for this not put here
},
autocommands = {},
lang = {},
log = {
---@usage can be { "trace", "debug", "info", "warn", "error", "fatal" },
level = "warn",
viewer = {
---@usage this will fallback on "less +F" if not found
cmd = "lnav",
layout_config = {
---@usage direction = 'vertical' | 'horizontal' | 'window' | 'float',
direction = "horizontal",
open_mapping = "",
size = 40,
float_opts = {},
},
},
---@usage set to false to restore the default behavior of vim.notify
override_notify = true,
},
}