diff options
author | kylo252 <[email protected]> | 2021-10-10 21:07:41 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2021-10-10 21:07:41 +0200 |
commit | 52b74557415eb757ad4b7481b0aec8a3f98dd58d (patch) | |
tree | 9a05ec71a46c99fbdf8df0043be652b528c7c04e /lua/config/defaults.lua | |
parent | e2c85df440564a62fd804555747b1652a6844a5e (diff) |
feat: add an independent lvim namespace (#1699)
Diffstat (limited to 'lua/config/defaults.lua')
-rw-r--r-- | lua/config/defaults.lua | 37 |
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 = {}, -} |