LunarVim/lua/lvim/config/defaults.lua

45 lines
1.1 KiB
Lua
Raw Normal View History

return {
leader = "space",
reload_config_on_save = true,
colorscheme = "tokyonight",
2021-07-05 03:14:01 +02:00
transparent_window = false,
format_on_save = {
---@usage pattern string pattern used for the autocommand (Default: '*')
pattern = "*",
---@usage timeout number timeout in ms for the format request (Default: 1000)
timeout = 1000,
---@usage filter func to select client
filter = require("lvim.lsp.utils").format_filter,
},
keys = {},
2021-06-28 06:36:29 +02:00
use_icons = true,
icons = require "lvim.icons",
builtin = {},
2021-07-10 09:19:32 +02:00
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 = {},
},
},
-- currently disabled due to instabilities
override_notify = false,
},
2021-07-06 04:57:00 +02:00
}