LunarVim/lua/lvim/config/defaults.lua

33 lines
711 B
Lua
Raw Normal View History

return {
leader = "space",
2021-08-30 06:59:23 +02:00
colorscheme = "onedarker",
line_wrap_cursor_movement = true,
2021-07-05 03:14:01 +02:00
transparent_window = false,
2021-07-10 08:38:25 +02:00
format_on_save = true,
keys = {},
2021-06-28 06:36:29 +02:00
builtin = {},
2021-07-10 09:19:32 +02:00
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 = {},
},
},
},
plugins = {
-- use config.lua for this not put here
},
2021-07-25 13:57:48 +02:00
autocommands = {},
lang = {},
2021-07-06 04:57:00 +02:00
}