2022-05-29 12:37:47 +02:00
|
|
|
local M = {}
|
2022-05-29 11:38:53 +02:00
|
|
|
local merge_tb = vim.tbl_deep_extend
|
|
|
|
|
2022-05-29 12:37:47 +02:00
|
|
|
M.load_config = function()
|
2022-07-22 18:00:00 +02:00
|
|
|
local config = require "core.default_config"
|
2022-12-17 12:25:30 +01:00
|
|
|
local chadrc_path = vim.api.nvim_get_runtime_file("lua/custom/chadrc.lua", false)[1]
|
2022-07-22 18:00:00 +02:00
|
|
|
|
2022-12-17 12:25:30 +01:00
|
|
|
if chadrc_path then
|
|
|
|
local chadrc = dofile(chadrc_path)
|
|
|
|
|
2023-03-09 13:37:58 +01:00
|
|
|
config.mappings = M.remove_disabled_keys(chadrc.mappings, require "core.mappings")
|
2022-12-17 12:25:30 +01:00
|
|
|
config = merge_tb("force", config, chadrc)
|
2022-07-22 18:00:00 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
config.mappings.disabled = nil
|
|
|
|
return config
|
2021-08-25 07:28:56 +02:00
|
|
|
end
|
|
|
|
|
2022-08-11 12:10:26 +02:00
|
|
|
M.remove_disabled_keys = function(chadrc_mappings, default_mappings)
|
|
|
|
if not chadrc_mappings then
|
|
|
|
return default_mappings
|
2022-07-22 18:00:00 +02:00
|
|
|
end
|
|
|
|
|
2022-08-11 12:10:26 +02:00
|
|
|
-- store keys in a array with true value to compare
|
|
|
|
local keys_to_disable = {}
|
|
|
|
for _, mappings in pairs(chadrc_mappings) do
|
|
|
|
for mode, section_keys in pairs(mappings) do
|
|
|
|
if not keys_to_disable[mode] then
|
|
|
|
keys_to_disable[mode] = {}
|
|
|
|
end
|
2022-08-12 14:27:32 +02:00
|
|
|
section_keys = (type(section_keys) == "table" and section_keys) or {}
|
2022-08-11 12:10:26 +02:00
|
|
|
for k, _ in pairs(section_keys) do
|
|
|
|
keys_to_disable[mode][k] = true
|
|
|
|
end
|
2022-07-22 18:00:00 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-08-11 12:10:26 +02:00
|
|
|
-- make a copy as we need to modify default_mappings
|
|
|
|
for section_name, section_mappings in pairs(default_mappings) do
|
|
|
|
for mode, mode_mappings in pairs(section_mappings) do
|
|
|
|
mode_mappings = (type(mode_mappings) == "table" and mode_mappings) or {}
|
|
|
|
for k, _ in pairs(mode_mappings) do
|
|
|
|
-- if key if found then remove from default_mappings
|
|
|
|
if keys_to_disable[mode] and keys_to_disable[mode][k] then
|
|
|
|
default_mappings[section_name][mode][k] = nil
|
|
|
|
end
|
2022-05-14 14:56:55 +02:00
|
|
|
end
|
2022-07-22 18:00:00 +02:00
|
|
|
end
|
|
|
|
end
|
2022-05-14 01:31:13 +02:00
|
|
|
|
2022-08-11 12:10:26 +02:00
|
|
|
return default_mappings
|
|
|
|
end
|
2022-07-22 18:00:00 +02:00
|
|
|
|
2022-08-11 12:10:26 +02:00
|
|
|
M.load_mappings = function(section, mapping_opt)
|
|
|
|
local function set_section_map(section_values)
|
|
|
|
if section_values.plugin then
|
|
|
|
return
|
2022-07-22 18:00:00 +02:00
|
|
|
end
|
2023-01-29 19:00:13 +01:00
|
|
|
|
2022-08-11 12:10:26 +02:00
|
|
|
section_values.plugin = nil
|
2022-07-22 18:00:00 +02:00
|
|
|
|
2022-08-11 12:10:26 +02:00
|
|
|
for mode, mode_values in pairs(section_values) do
|
|
|
|
local default_opts = merge_tb("force", { mode = mode }, mapping_opt or {})
|
|
|
|
for keybind, mapping_info in pairs(mode_values) do
|
|
|
|
-- merge default + user opts
|
|
|
|
local opts = merge_tb("force", default_opts, mapping_info.opts or {})
|
|
|
|
|
|
|
|
mapping_info.opts, opts.mode = nil, nil
|
|
|
|
opts.desc = mapping_info[2]
|
|
|
|
|
|
|
|
vim.keymap.set(mode, keybind, mapping_info[1], opts)
|
2022-05-12 14:56:01 +02:00
|
|
|
end
|
2022-07-22 18:00:00 +02:00
|
|
|
end
|
|
|
|
end
|
2022-08-04 16:32:16 +02:00
|
|
|
|
2022-08-11 12:10:26 +02:00
|
|
|
local mappings = require("core.utils").load_config().mappings
|
|
|
|
|
|
|
|
if type(section) == "string" then
|
|
|
|
mappings[section]["plugin"] = nil
|
|
|
|
mappings = { mappings[section] }
|
|
|
|
end
|
|
|
|
|
|
|
|
for _, sect in pairs(mappings) do
|
|
|
|
set_section_map(sect)
|
|
|
|
end
|
2022-05-12 14:56:01 +02:00
|
|
|
end
|
|
|
|
|
2022-11-17 02:30:36 +01:00
|
|
|
M.lazy_load = function(plugin)
|
|
|
|
vim.api.nvim_create_autocmd({ "BufRead", "BufWinEnter", "BufNewFile" }, {
|
|
|
|
group = vim.api.nvim_create_augroup("BeLazyOnFileOpen" .. plugin, {}),
|
|
|
|
callback = function()
|
|
|
|
local file = vim.fn.expand "%"
|
2023-01-07 09:11:43 +01:00
|
|
|
local condition = file ~= "NvimTree_1" and file ~= "[lazy]" and file ~= ""
|
2022-11-17 02:30:36 +01:00
|
|
|
|
|
|
|
if condition then
|
|
|
|
vim.api.nvim_del_augroup_by_name("BeLazyOnFileOpen" .. plugin)
|
|
|
|
|
|
|
|
-- dont defer for treesitter as it will show slow highlighting
|
|
|
|
-- This deferring only happens only when we do "nvim filename"
|
|
|
|
if plugin ~= "nvim-treesitter" then
|
2023-01-07 09:11:43 +01:00
|
|
|
vim.schedule(function()
|
|
|
|
require("lazy").load { plugins = plugin }
|
|
|
|
|
2022-11-17 02:30:36 +01:00
|
|
|
if plugin == "nvim-lspconfig" then
|
|
|
|
vim.cmd "silent! do FileType"
|
|
|
|
end
|
|
|
|
end, 0)
|
|
|
|
else
|
2023-01-07 09:11:43 +01:00
|
|
|
require("lazy").load { plugins = plugin }
|
2022-11-17 02:30:36 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2022-05-29 12:37:47 +02:00
|
|
|
return M
|