summaryrefslogtreecommitdiff
path: root/lua/config/defaults.lua
diff options
context:
space:
mode:
authorkylo252 <[email protected]>2021-10-21 07:48:10 +0200
committerkylo252 <[email protected]>2021-10-21 07:48:10 +0200
commit30de3736baec9a72134205de91f3388e3ea68bcf (patch)
treec0079f51d68c61316726f104bae963c5f0371571 /lua/config/defaults.lua
parentb98264042f558751483e2c993ebed11a5bcbb1de (diff)
parent25747cfff457d5375b6141588d81017ca515ffcb (diff)
Merge remote-tracking branch 'origin/rolling'
Diffstat (limited to 'lua/config/defaults.lua')
-rw-r--r--lua/config/defaults.lua37
1 files changed, 0 insertions, 37 deletions
diff --git a/lua/config/defaults.lua b/lua/config/defaults.lua
deleted file mode 100644
index f030234d..00000000
--- a/lua/config/defaults.lua
+++ /dev/null
@@ -1,37 +0,0 @@
-local home_dir = vim.loop.os_homedir()
-local utils = require "utils"
-
-lvim = {
- leader = "space",
- colorscheme = "onedarker",
- line_wrap_cursor_movement = true,
- transparent_window = false,
- format_on_save = true,
- vsnip_dir = utils.join_paths(home_dir, ".config", "snippets"),
- database = { save_location = utils.join_paths(home_dir, ".config", "lunarvim_db"), auto_execute = 1 },
- 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 = {},
-}