summaryrefslogtreecommitdiff
path: root/lua/lvim/config/defaults.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/lvim/config/defaults.lua')
-rw-r--r--lua/lvim/config/defaults.lua32
1 files changed, 32 insertions, 0 deletions
diff --git a/lua/lvim/config/defaults.lua b/lua/lvim/config/defaults.lua
new file mode 100644
index 00000000..ffbb2e1b
--- /dev/null
+++ b/lua/lvim/config/defaults.lua
@@ -0,0 +1,32 @@
+return {
+ leader = "space",
+ colorscheme = "onedarker",
+ line_wrap_cursor_movement = true,
+ transparent_window = false,
+ format_on_save = true,
+ keys = {},
+
+ builtin = {},
+
+ 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
+ },
+
+ autocommands = {},
+ lang = {},
+}